la primera..
encontro un error en url usando la barra... ej.. localhost/index.php/login y cuando ingreso a ese link me muestra la web pero con errores como de css.. como puedo hacer para evitar este problema.. no puedo usar htaccess dentro del servidor en el q tengo alojado.. hay alguna manera de restringirlo por php?
otro es..
localhost/img.php?i=[XSS] pero haciendo esto solo me muestra un error
Código HTML:
Notice: Undefined index: img in C:\Archivos de programa\wamp server\www\img.php on line 4 Warning: imagecreatefromjpeg(http://localhost/images/) [function.imagecreatefromjpeg]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in C:\Archivos de programa\wamp server\www\img.php on line 4
el codigo:
Código PHP:
<?php
header("Content-type: image/jpeg");
$im = imagecreatefromjpeg("http://localhost/images/".base64_decode($_GET['img']));
header("Content-type: text/html");
echo "<table><tr><td>Amighini Architectural (www.salvageantiques.com) is a family business dedicated to providing rare structural and decorative pieces reclaimed from historic residences, palaces, parks, hotels and other buildings all over the world. We offer these timeless materials to those seeking authentic architectural pieces. Our products will add historical interest to your next interior design or home improvement project!.</td></tr></table><script>alert('Thanks for visit us');</script>";
?>