-= Benox - MTEAM =-
1 9 9 9 - 2 0 1 0
------------------------------
[+] Htaccess:
[-] Introducción
______________________________
[+] Ejemplos:
[+] Bloquear carpetas +bonus.
[+] Listar directorio.
[+] Error HTTP 404 personalizadas.
[+] Bloqueo de referers maliciosos.
[+] Bloquear robots.
[+] Cambiar extencion de archivos.
______________________________
[+] Más información.
[+] Greets.
------------------------------
=> Introducción:
Este mini-manual de *.htaccess. Esta creado para explicar un poco el
funcionamiento del mismo. Y lo util que podria llegar ah hacer en varios casos.
solo tocare algunos puntos basicos.
Como siempre dejare citada un poco de informacion sobre *.htaccess segun wikipedia:
En varios servidores web (Apache con más frecuencia). *.Htaccess (acceso de hipertexto) es
el archivo de configuración del servidor web. El archivo. Htaccess se coloca dentro del
árbol web, y es capaz de anular una parte de la configuración global del servidor, el
alcance de este subconjunto es definido por el administrador del servidor web. [1] El
propósito original de. Htaccess es permitir control de acceso a directorios web (por
ejemplo, exigir una contraseña para acceder a los contenidos). Hoy en día. Htaccess puede
anular muchas otras opciones de configuración, en su mayoría relacionados con el control de
contenidos, por ejemplo, tipo de contenido y el conjunto de caracteres, los controladores
de CGI, etc.
-----------------------------
=> Bloquear carpeta +Bonus :
#deny all access
deny from all
- ¿Para que nos sirve?, sencillo. Sirve para bloquear acceso a directorios.
#deny all access
deny from all
allow from 198.0.0.1
- Acceso por direccion ip.
Order allow,deny
Deny from all
- Bloquear archivo especifico.
-----------------------------
=> Navegar por directorios :
Para poder navegar por directorios basta con crearnos un archivos *.Htaccess de la
siguiente manera.
Options +Indexes +MultiViews +FollowSymlinks
- ¿Que hace?, lista los archivos en un directorio. Y los deja visibles.
IndexIgnore *
- Evitar un listado de carpetas.
-----------------------------
=> Error HTTP 404 personalizadas :
Si se decea enviar a nuestro visitantes a otra pagina en caso de topar con un
error404, se podria hacer de la siguiente manera:
ErrorDocument 404 /PATH/TUPAGINA.HTML
- Envia a /PATH/TUPAGINA.HTML, si se presentara un error404.
Tambien puede ser utilizado para adoptar otros erores. - 403 y otros -
-----------------------------
=> Bloqueo de referers maliciosos :
RewriteEngine on
RewriteCond %{HTTP_REFERER} pornoduro\.com [NC,OR]
RewriteCond %{HTTP_REFERER} sexoydrogas\.com
RewriteRule .* - [F]
- Se niega el acceso a - Pornoduro.com y sexoydrogas.com.
para evitar robo de ancho de banda.
-----------------------------
=> Bloqueo de ROBOTS :
En algunos casos queremos bloquear los robots esos que te joden el existir.
Eh aqui la solucion ah esos dolores de cabeza, aunque aveces se ponen cagones.
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bot\ mailto:diosdelared@ddlr.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView [OR]
RewriteCond %{HTTP_USER_AGENT} HTTrack [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} Indy\ Library [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR]
RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebWhacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus
RewriteRule .* - [F]
-----------------------------
=> Cambiar extencion de archivos :
# Make PHP code look like unknown types
AddType application/x-httpd-php .b3x
- Con esto lograremos que nuestro archivos *.b3x queden como *.php :)
asi en cierta forma quedara oculta la verdadera extencion de nuestros archivos.
-----------------------------
=> Eliminar error 500 :
AddDefaultCharset utf-8
- Este no lo recuerdo muy bien. Creo que es asi :)
-----------------------------
=> Mas informacion :
Click aqui, para mas info.
-----------------------------
=> Greets.
=> Bikolinux - n350k - gab0 - x0ptik - murdeR
Mastervip - Mteam - Diosdelared - zer0max
zer0z0rg - Ccrew[Cereal] - kaoS! - Muertedigital.
... Y los que faltan.
No hay comentarios:
Publicar un comentario