« Octubre 2003 | Main | Diciembre 2003 »
bash# nmap -sS -v -O localhost WARNING! The following files exist and are readable: /usr/local/share/nmap/nmap-os-fingerprints and ./nmap-os-fingerprints. I am choosing /usr/local/share/nmap/nmap-os-fingerprints for security reasons. set NMAPDIR=. to give priority to files in your local directory Starting nmap 3.48 ( http://www.insecure.org/nmap/ ) at 2003-11-29 16:37 CST WARNING! The following files exist and are readable: /usr/local/share/nmap/nmap-services and ./nmap-services. I am choosing /usr/local/share/nmap/nmap-services for security reasons. set NMAPDIR=. to give priority to files in your local directory Host 127.0.0.1 appears to be down, skipping it. Note: Host seems down. If it is really up, but blocking our ping probes, try -P0 Nmap run completed -- 1 IP address (0 hosts up) scanned in 13.008 seconds

cortesÃa de illegal art
##
## httpd.conf -- Apache HTTP server configuration file
##
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
#
# After this file is processed, the server will look for and process
# /usr/local/apache/conf/srm.conf and then /usr/local/apache/conf/access.conf
# unless you have overridden these with ResourceConfig and/or
# AccessConfig directives here.
#
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
# 2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/usr/local/apache" will be interpreted by the
# server as "/usr/local/apache/logs/foo.log".
#
### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
#
# ServerType is either inetd, or standalone. Inetd mode is only supported on
# Unix platforms.
#
ServerType standalone
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at );
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/usr/local/apache"
#
# The LockFile directive sets the path to the lockfile used when Apache
# is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
# USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
# its default value. The main reason for changing it is if the logs
# directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
# DISK. The PID of the main server process is automatically appended to
# the filename.
#
LockFile /var/lock/subsys/httpd.lock
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile /var/run/httpd.pid
#
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this. But if yours does (you'll know because
# this file will be created when you run Apache) then you *must* ensure that
# no two invocations of Apache share the same scoreboard file.
#
ScoreBoardFile /var/run/httpd.scoreboard
#
# In the standard configuration, the server will process httpd.conf (this
# file, specified by the -f command line option), srm.conf, and access.conf
# in that order. The latter two files are now distributed empty, as it is
# recommended that all directives be kept in a single file for simplicity.
# The commented-out values below are the built-in defaults. You can have the
# server ignore these files altogether by using "/dev/null" (for Unix) or
# "nul" (for Win32) for the arguments to the directives.
#
#ResourceConfig conf/srm.conf
#AccessConfig conf/access.conf
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
# JARUZ : era 100
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15
#
# Server-pool size regulation. Rather than making you guess how many
# server processes you need, Apache dynamically adapts to the load it
# sees --- that is, it tries to maintain enough server processes to
# handle the current load, plus a few spare servers to handle transient
# load spikes (e.g., multiple simultaneous requests from a single
# Netscape browser).
#
# It does this by periodically checking how many servers are waiting
# for a request. If there are fewer than MinSpareServers, it creates
# a new spare. If there are more than MaxSpareServers, some of the
# spares die off. The default values are probably OK for most sites.
#
MinSpareServers 15
MaxSpareServers 75
#
# Number of servers to start initially --- should be a reasonable ballpark
# figure.
#
StartServers 30
#
# Limit on total number of servers running, i.e., limit on the number
# of clients who can simultaneously connect --- if this limit is ever
# reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
# It is intended mainly as a brake to keep a runaway server from taking
# the system with it as it spirals down...
#
# JARUZ : era 500
MaxClients 512
#
# MaxRequestsPerChild: the number of requests each child process is
# allowed to process before the child dies. The child will exit so
# as to avoid problems after prolonged use when Apache (and maybe the
# libraries it uses) leak memory or other resources. On most systems, this
# isn't really needed, but a few (such as Solaris) do have notable leaks
# in the libraries. For these platforms, set to something like 10000
# or so; a setting of 0 means unlimited.
#
# NOTE: This value does not include keepalive requests after the initial
# request per connection. For example, if a child process handles
# an initial request and 10 subsequent "keptalive" requests, it
# would only count as 1 request towards this limit.
#
MaxRequestsPerChild 10000
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the
# directive.
#
#Listen 3000
#Listen 3000
#Listen 12.34.56.78:80
#2002-11-28 Sandino Araico Sánchez - Listen only specified IP addresses
#Listen 127.0.0.1:80
#Listen 192.168.2.6:80
#Listen 200.57.34.35:80
#Listen 200.57.34.45:80
#Listen 200.57.40.53:80
#
# BindAddress: You can support virtual hosts with this option. This directive
# is used to tell the server which IP address to listen to. It can either
# contain "*", an IP address, or a fully qualified Internet domain name.
# See also the and Listen directives.
#
#BindAddress 127.0.0.1
#BindAddress 192.168.2.6
#BindAddress 200.57.34.35
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Please read the file README.DSO in the Apache 1.3 distribution for more
# details about the DSO mechanism and run `httpd -l' for the list of already
# built-in (statically linked and thus always available) modules in your httpd
# binary.
#
# Note: The order in which modules are loaded is important. Don't change
# the order below without expert advice.
#
# Example:
# LoadModule foo_module libexec/mod_foo.so
#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On
### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# definition. These values also provide defaults for
# any containers you may define later in the file.
#
# All of these directives may appear inside containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# If your ServerType directive (set earlier in the 'Global Environment'
# section) is set to "inetd", the next few directives don't have any
# effect since their settings are defined by the inetd configuration.
# Skip ahead to the ServerAdmin directive.
#
#
# Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
#
Port 80
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group nobody on these systems!
#
User nobody
Group nobody
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents.
#
ServerAdmin sandino@presidencia.gob.mx
#
# ServerName allows you to set a host name which is sent back to clients for
# your server if it's different than the one the program would get (i.e., use
# "www" instead of the host's real name).
#
# Note: You cannot just invent host names and hope they work. The name you
# define here must be a valid DNS name for your host. If you don't understand
# this, ask your network administrator.
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address (e.g., http://123.45.67.89/)
# anyway, and this will make redirections work in a sensible way.
#
# 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
# machine always knows itself by this address. If you use Apache strictly for
# local testing and development, you may use 127.0.0.1 as the server name.
#
ServerName huitzilopochtli.presidencia.gob.mx
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/home/sites/www.presidencia.gob.mx/web"
#
# Each directory to which Apache has access, can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# permissions.
#
Options FollowSymLinks
AllowOverride None
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
DirectoryIndex index.php index.php3 index.html index.htm
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews
#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
UserDir public_html
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
Order allow,deny
Allow from all
Order deny,allow
Deny from all
#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
DirectoryIndex index.php index.php3 index.html index.htm
#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess files from being viewed by
# Web clients. Since .htaccess files often contain authorization
# information, access is disallowed for security reasons. Comment
# these lines out if you want Web visitors to see the contents of
# .htaccess files. If you change the AccessFileName directive above,
# be sure to make the corresponding changes here.
#
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
Order allow,deny
Deny from all
#
# CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
# document that was negotiated on the basis of content. This asks proxy
# servers not to cache the document. Uncommenting the following line disables
# this behavior, and proxies will be allowed to cache the documents.
#
CacheNegotiatedDocs
#
# UseCanonicalName: (new for 1.3) With this setting turned on, whenever
# Apache needs to construct a self-referencing URL (a URL that refers back
# to the server the response is coming from) it will use ServerName and
# Port to form a "canonical" name. With this setting off, Apache will
# use the hostname:port that the client supplied, when possible. This
# also affects SERVER_NAME and SERVER_PORT in CGI scripts.
#
UseCanonicalName On
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /usr/local/apache/conf/mime.types
#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
# mod_mime_magic is not part of the default server (you have to add
# it yourself with a LoadModule [see the DSO paragraph in the 'Global
# Environment' section], or recompile the server and include mod_mime_magic
# as part of the configuration), so it's enclosed in an container.
# This means that the MIMEMagicFile directive will only be processed if the
# module is part of the server.
#
MIMEMagicFile /usr/local/apache/conf/magic
#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/logs/apache/httpd.error.log
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a
# container, they will be logged here. Contrariwise, if you *do*
# define per- access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog /var/logs/apache/httpd.access.log combined
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog /usr/local/apache/logs/referer_log referer
#CustomLog /usr/local/apache/logs/agent_log agent
#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog /usr/local/apache/logs/access_log combined
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#
ServerSignature EMail
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/"..
#
Alias /icons/ "/usr/local/apache/icons/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
#
# "/usr/local/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
AllowOverride None
Options None
Order allow,deny
Allow from all
# End of aliases.
#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Format: Redirect old-URI new-URL
#
#
# Directives controlling the display of server-generated directory listings.
#
#
# FancyIndexing is whether you want fancy directory indexing or standard
#
IndexOptions FancyIndexing
#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif
#
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
#
# If MultiViews are amongst the Options in effect, the server will
# first look for name.html and include it if found. If name.html
# doesn't exist, the server will then look for name.txt and include
# it as plaintext if found.
#
ReadmeName README
HeaderName HEADER
#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
# End of indexing directives.
#
# Document types.
#
#
# AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddEncoding x-bzip bz bz2
#
# AddLanguage allows you to specify the language of a document. You can
# then use content negotiation to give a browser a file in a language
# it can understand.
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
#
# Note 2: The example entries below illustrate that in quite
# some cases the two character 'Language' abbriviation is not
# identical to the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. But there is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
#
# Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
# French (fr) - German (de) - Greek-Modern (el)
# Italian (it) - Korean (kr) - Norwegian (no)
# Portugese (pt) - Luxembourgeois* (ltz)
# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
# Russian (ru)
#
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .ee
AddLanguage fr .fr
AddLanguage de .de
AddLanguage el .el
AddLanguage he .he
AddCharset ISO-8859-8 .iso8859-8
AddLanguage it .it
AddLanguage ja .ja
AddCharset ISO-2022-JP .jis
AddLanguage kr .kr
AddCharset ISO-2022-KR .iso-kr
AddLanguage no .no
AddLanguage pl .po
AddCharset ISO-8859-2 .iso-pl
AddLanguage pt .pt
AddLanguage pt-br .pt-br
AddLanguage ltz .lu
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage tw .tw
AddCharset Big5 .Big5 .big5
AddCharset WINDOWS-1251 .cp-1251
AddCharset CP866 .cp866
AddCharset ISO-8859-5 .iso-ru
AddCharset KOI8-R .koi8-r
AddCharset UCS-2 .ucs2
AddCharset UCS-4 .ucs4
AddCharset UTF-8 .utf8
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority es en fr da nl et de el it ja kr no pl pt pt-br ru ltz ca sv tw
#
# AddType allows you to tweak mime.types without actually editing it, or to
# make certain files to be certain types.
#
# For example, the PHP 3.x module (not part of the Apache distribution - see
# http://www.php.net) will typically use:
#
#AddType application/x-httpd-php3 .php3
#AddType application/x-httpd-php3-source .phps
#
# And for PHP 4.x, use:
#
AddType application/x-httpd-php .php .php3 .lib .inc
AddType application/x-httpd-php-source .phps
#
AddType application/x-tar .tar
AddType application/x-compressed-tar .tgz .tar.gz .tar.Z
AddType application/x-bzip-compressed-tar .tar.bz
AddType application/x-stuffit sit
AddType audio/x-scpls .pls
AddType audio/x-mpegurl .m3u
AddType audio/x-mpeg .mp3 .mp2
AddType audio/x-pn-realaudio .ram .ra .rm
AddType video/quicktime .mov .sdp
AddType application/x-x509-ca-cert .crt .cer
AddType application/x-pkcs7-crl .crl
AddType application/msword .doc
AddType application/vnd.ms-powerpoint .ppt
AddType application/pdf .pdf
AddType application/x-font-ttf .ttf .TTF
AddType application/octet-stream .bin .exe .iso
#
# AddHandler allows you to map certain file extensions to "handlers",
# actions unrelated to filetype. These can be either built into the server
# or added with the Action command (see below)
#
# If you want to use server side includes, or CGI outside
# ScriptAliased directories, uncomment the following lines.
#
# To use CGI scripts:
#
#AddHandler cgi-script .cgi
#
# To use server-parsed HTML files
#
#AddType text/html .shtml
#AddHandler server-parsed .shtml
#
# Uncomment the following line to enable Apache's send-asis HTTP file
# feature
#
#AddHandler send-as-is asis
#
# If you wish to use server-parsed imagemap files, use
#
#AddHandler imap-file map
#
# To enable type maps, you might want to use
#
#AddHandler type-map var
# End of document types.
#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#
#
# MetaDir: specifies the name of the directory in which Apache can find
# meta information files. These files contain additional HTTP headers
# to include when sending the document
#
#MetaDir .web
#
# MetaSuffix: specifies the file name suffix for the file containing the
# meta information.
#
#MetaSuffix .meta
#
# Customizable error response (Apache style)
# these come in three flavors
#
# 1) plain text
#ErrorDocument 500 "The server made a boo boo.
# n.b. the single leading (") marks it as text, it does not get output
#
# 2) local redirects
#ErrorDocument 400 error.php?Err=400
#ErrorDocument 401 error.php?Err=401
#ErrorDocument 402 error.php?Err=402
#ErrorDocument 403 error.php?Err=403
#ErrorDocument 404 error.php?Err=404
#ErrorDocument 405 error.php?Err=405
#ErrorDocument 500 error.php?Err=500
#ErrorDocument 404 /missing.html
# to redirect to local URL /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# N.B.: You can redirect to a script or a document using server-side-includes.
#
# 3) external redirects
#ErrorDocument 402 http://some.other_server.com/subscription_info.html
# N.B.: Many of the environment variables associated with the original
# request will *not* be available to such a script.
#
# Customize behaviour based on the browser
#
#
# The following directives modify normal HTTP response behavior.
# The first directive disables keepalive for Netscape 2.x and browsers that
# spoof it. There are known problems with these browser implementations.
# The second directive is for Microsoft Internet Explorer 4.0b2
# which has a broken HTTP/1.1 implementation and does not properly
# support keepalive when it is used on 301 or 302 (redirect) responses.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
#
# The following directive disables HTTP/1.1 responses to browsers which
# are in violation of the HTTP/1.0 spec by not being able to grok a
# basic 1.1 response.
#
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
# End of browser customization directives
#
# Allow server status reports, with the URL of http://servername/server-status
# Change the ".your_domain.com" to match your domain to enable.
#
SetHandler server-status
Order deny,allow
Deny from all
Allow from localhost
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".your_domain.com" to match your domain to enable.
#
SetHandler server-info
Order deny,allow
Deny from all
Allow from localhost
#
# There have been reports of people trying to abuse an old bug from pre-1.1
# days. This bug involved a CGI script distributed as a part of Apache.
# By uncommenting these lines you can redirect these attacks to a logging
# script on phf.apache.org. Or, you can record them yourself, using the script
# support/phf_abuse_log.cgi.
#
#
# Deny from all
# ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
#
#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#
# ProxyRequests On
#
# Order deny,allow
# Deny from all
# Allow from .your_domain.com
#
#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
# ProxyVia On
#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
# CacheRoot "/usr/local/apache/proxy"
# CacheSize 5
# CacheGcInterval 4
# CacheMaxExpire 24
# CacheLastModifiedFactor 0.1
# CacheDefaultExpire 1
# NoCache a_domain.com another_domain.edu joes.garage_sale.com
#
# End of proxy directives.
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
NameVirtualHost *
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#
ServerName huitzilopochtli.presidencia.gob.mx
DocumentRoot /home/sites/www.presidencia.gob.mx/web
ErrorLog /var/logs/apache/www.presidencia.gob.mx/error.log
CustomLog /var/logs/apache/www.presidencia.gob.mx/access.log combined
CustomLog /var/logs/apache/www.presidencia.gob.mx/consolidado.log combined
php_value include_path .:/home/sites/www.presidencia.gob.mx/include:/home/sites/hopp
include /usr/local/apache/conf/virtual.hosts
# This is a basic ProFTPD configuration file (rename it to - # 'proftpd.conf' for actual use. It establishes a single server # and a single anonymous login. It assumes that you have a user/group # "nobody" and "ftp" for normal operation and anon. ServerName huitzilopochtli ServerType standalone DefaultServer on ServerIdent on ftp.presidencia.gob.mx ServerAdmin sandino@presidencia.gob.mx # Port 21 is the standard FTP port. Port 21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 002 # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 15 PassivePorts 21021 21030 # Set the user and group that the server normally runs at. User nobody Group devel ExtendedLog /var/log/proftpd/ftp.log UseReverseDNS off UserAlias mandarina 00sandino UserAlias jaruz 01jaruz UserAlias lgonzalez 02lgonzalez UserAlias kenji 03kenji UserAlias tania 05tania UserAlias myrna 06myrna UserAlias maricarmen 07maricarmen UserAlias beto 08beto UserAlias emilio 09emilio UserAlias paco ryner UserAlias olguin 24olguin UserAlias ccobos 25ccobos UserAlias meche 26meche UserAlias gabriel 27gabriel UserAlias jamon 28jamon UserAlias itze 33itze UserAlias mario 34mario UserAlias fernando fernando01 # Normally, we want files to be overwriteable. AllowOverwrite off AllowOverwrite on AllowGroup devel DenyAll Order allow,deny #Allow from 200.23.123.100 Allow from 192.168.1. Allow from 192.168.2. Deny from all DefaultRoot /home/sites Order allow,deny #Allow from 200.23.123.100 Allow from 192.168.1. Allow from 192.168.2. Deny from all AllowGroup devel DenyAll # # Port 21001 ## PassivePorts 21021 21025 # DefaultRoot /home/sites # ExtendedLog /var/log/proftpd/sites.log # # AllowOverwrite on # # AllowGroup devel # DenyAll # # # # AllowGroup devel # DenyAll # # # Order allow,deny # Allow from 192.168.1.13 # Deny from all # # Port 21001 PassivePorts 21021 21030 DefaultRoot /home/sites ExtendedLog /var/log/proftpd/sites.log AllowOverwrite on AllowGroup devel DenyAll AllowGroup devel DenyAll Order allow,deny Allow from 200.23.123.100 192.168.4. 192.168.2. 192.168.1. 192.168.0. 200.57.34.36 Deny from all Port 21002 PassivePorts 21021 21030 DefaultRoot /home/sites/discapacidad.presidencia.gob.mx ExtendedLog /var/log/proftpd/discapacidad.log UserAlias jhernandez temp1 Umask 002 Group devel AllowOverwrite on AllowUser temp1 DenyAll AllowUser temp1 DenyAll Order allow,deny Allow from 200.23.123.100 207.248.179.26 Deny from all Port 21003 PassivePorts 21021 21030 DefaultRoot /home/sites/www.contigo.gob.mx/web/images ExtendedLog /var/log/proftpd/contigo.log UserAlias mrivera temp4 AllowOverwrite on AllowUser temp4 AllowGroup devel DenyAll AllowUser temp4 AllowGroup devel DenyAll Order allow,deny Allow from 200.23.123.100 148.245.85.218 Deny from all # 21004 está siendo utilizado por sshd # 21005 está siendo utilizado por http/ssl Port 21006 PassivePorts 21021 21030 DefaultRoot /home/sites/ciudadano.presidencia.gob.mx ExtendedLog /var/log/proftpd/ciudadano.log UserAlias ciudadano temp2 AllowOverwrite on AllowUser temp2 AllowUser 06myrna DenyAll AllowUser temp2 AllowUser 06myrna DenyAll # # Order deny,allow # Deny from 32.103.1.32 148.223.154.70 148.221.222.83 200.38.253.29 200.38.253.99 161.196.243.228 63.136.246.10 148.221.93.70 148.221.131.234 131.178.26.35 148.204.183.90 148.221.136.197 148.240.64.95 200.65.113.141 200.226.227.246 148.240.168.242 172.161.253.164 172.142.150.182 148.235.148.239 148.240.72.51 148.240.168.100 132.248.180.197 148.240.68.228 148.202.26.143 200.64.169.95 148.233.183.145 # Allow from all # Port 21007 PassivePorts 21021 21030 DefaultRoot /home/sites/tempo ExtendedLog /var/log/proftpd/tempo.log AllowOverwrite on AllowGroup devel DenyAll AllowGroup devel DenyAll Order allow,deny Allow from all # 21008 está siendo utilizado por icecast # 21009 está siendo utilizado por icecast # 21010 está siendo utilizado por CIPE (UDP) Port 21011 PassivePorts 21021 21030 DefaultRoot /home/sites/www.remesas.gob.mx ExtendedLog /var/log/proftpd/remesas.log UserAlias jorge_gongora temp3 AllowOverwrite on AllowUser temp3 DenyAll AllowUser temp3 DenyAll ## 21012 Cuenta upload para Diveo Port 21012 PassivePorts 21021 21030 DefaultRoot /mnt/u02/kaspersky ExtendedLog /var/log/proftpd/kaspersky.log UserAlias kaspersky temp12 AllowOverwrite off DenyAll DenyAll AllowUser temp12 DenyAll AllowUser temp12 DenyAll Port 21013 PassivePorts 21021 21030 DefaultRoot /home/sites/fronteranorte.presidencia.gob.mx ExtendedLog /var/log/proftpd/fronteranorte.log UserAlias fronteranorte temp7 AllowOverwrite on AllowUser temp7 DenyAll AllowUser temp7 DenyAll Port 21014 PassivePorts 21021 21030 DefaultRoot /home/sites/migrantes.presidencia.gob.mx/ ExtendedLog /var/log/proftpd/migrantes.log UserAlias juan temp6 AllowOverwrite on AllowUser temp6 DenyAll AllowUser temp6 DenyAll Port 21015 PassivePorts 21021 21030 DefaultRoot /home/sites/upload/ ExtendedLog /var/log/proftpd/upload.log UserAlias upload temp11 AllowOverwrite off AllowUser temp11 DenyAll AllowUser temp11 DenyAll Port 21016 PassivePorts 21021 21030 DefaultRoot /home/sites/boletin.presidencia.gob.mx/ ExtendedLog /var/log/proftpd/boletin.log UserAlias boletin temp8 AllowOverwrite on AllowUser temp8 DenyAll AllowUser temp8 DenyAll Port 21017 PassivePorts 21021 21030 DefaultRoot /home/sites/www.globalforum.gob.mx/upload ExtendedLog /var/log/proftpd/globalforum.log UserAlias upload temp5 AllowOverwrite on AllowUser temp5 DenyAll AllowUser temp5 DenyAll Port 21018 PassivePorts 21021 21030 DefaultRoot /home/sites/www.informe.presidencia.gob.mx/site/web/fotos ExtendedLog /var/log/proftpd/informe.log UserAlias upload temp9 AllowOverwrite on AllowUser temp9 DenyAll AllowUser temp9 DenyAll Port 21019 PassivePorts 21021 21030 DefaultRoot /home/sites/multimedia.presidencia.gob.mx/upload ExtendedLog /var/log/proftpd/informe.log UserAlias upload temp9 AllowOverwrite on AllowUser temp9 DenyAll AllowUser temp9 DenyAll User ftp Group ftp ExtendedLog /var/log/proftpd/anonymous.log # We want clients to be able to login with "anonymous" as well as "ftp" # El resto de los nombres son para darles el avión a los brute force attacks UserAlias 123 ftp UserAlias 1234 ftp UserAlias 12345 ftp UserAlias 123456 ftp UserAlias 1234567 ftp UserAlias 12345678 ftp UserAlias access ftp UserAlias adm ftp UserAlias admin ftp UserAlias Administrator ftp UserAlias Administrador ftp UserAlias anon ftp UserAlias anonimo ftp UserAlias anonimous ftp UserAlias anonimuos ftp UserAlias anonymous ftp UserAlias apache ftp UserAlias asd ftp UserAlias asdf ftp UserAlias asdfg ftp UserAlias asdfgh ftp UserAlias asdfghj ftp UserAlias bin ftp UserAlias beta ftp UserAlias bogus ftp UserAlias daemon ftp UserAlias ftpuser ftp UserAlias fox ftp UserAlias gdm ftp UserAlias guest ftp UserAlias guest123 ftp UserAlias info ftp UserAlias james ftp UserAlias login ftp UserAlias mysql ftp UserAlias nobody ftp UserAlias open ftp UserAlias oracle ftp UserAlias oracle8i ftp UserAlias postgres ftp UserAlias presidencia ftp UserAlias prueba ftp UserAlias pub ftp UserAlias public ftp UserAlias qwe ftp UserAlias qwer ftp UserAlias qwert ftp UserAlias qwerty ftp UserAlias qwertyu ftp UserAlias qwertyui ftp UserAlias qwertyuio ftp UserAlias root ftp UserAlias rpm ftp UserAlias sandino ftp UserAlias salinas ftp UserAlias Salinas ftp UserAlias sys ftp UserAlias temp ftp UserAlias test ftp UserAlias test123 ftp UserAlias user ftp UserAlias web ftp UserAlias www ftp UserAlias zxc ftp UserAlias zxcv ftp UserAlias zxcvb ftp UserAlias zxcvbn ftp UserAlias zxcvbnm ftp UserAlias zedillo ftp UserAlias Zedillo ftp # Limit the maximum number of anonymous logins MaxClients 15 # We want 'welcome.msg' displayed at login, and '.message' displayed # in each newly chdired directory. #DisplayLogin welcome.msg #DisplayFirstChdir .message RequireValidShell off # Limit LOGIN allow for every one AllowAll # Limit WRITE everywhere in the anonymous chroot DenyAll DenyFilter "CVS" PathDenyFilter "(\.ftpaccess)|(\.htaccess)$" # # # DenyAll # # #######################################################################
# - # hosts.allow This file describes the names of the hosts which are # allowed to use the local INET services, as decided # by the '/usr/sbin/tcpd' server. # icecast: ALL icecast_client: ALL icecast_admin: 127.0.0.1 200.57.34.35 192.168.4.* 192.168.2.* 192.168.1.* 192.168.0.* #icecast_source: 192.168.1.3 192.168.2.5 icecast_source: ALL
/bin/bash2 - /bin/bash /bin/sh /bin/ash /bin/bsh /bin/tcsh /bin/csh /bin/true /bin/false /bin/passwd /bin/laden
127.0.0.1 localhost 200.57.34.35 huitzilopochtli.presidencia.gob.mx huitzilopochtli www.presidencia.gob.mx 192.168.2.5 comalcalco.sip 200.23.123.100 comalcalco.presidencia.gob.mx 192.168.2.6 huitzilopochtli.sip 200.57.40.53 gordo gordo.presidencia.gob.mx
#/dev/ida/c0d0p3 / ext2 defaults 1 1 - /dev/ida/disc0/part3 / ext2 defaults 1 1 #/dev/ida/c0d0p1 /boot ext2 defaults 1 2 /dev/ida/disc0/part1 /boot ext2 defaults 1 2 /dev/fd0 /mnt/floppy auto noauto,owner 0 0 none /proc proc defaults 0 0 none /shm shm defaults 0 0 #none /dev/pts devpts gid=5,mode=620 0 0 #/dev/ida/c0d0p2 swap swap defaults 0 0 /dev/ida/disc0/part2 swap swap defaults,pri=1 0 0 /dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0 #/dev/ida/c0d0p4 /mnt/u01 reiserfs defaults 0 0 /dev/ida/disc0/part4 /mnt/u01 reiserfs defaults 0 0 #//gordo/Estaticos /mnt/smb smbfs auto,rw,nodev,nosuid,nousei,ip=200.57.40.53,uid=99,gid=499,fmask=0664,dmask=0775,username=huitzi,password=Azte28Ca 0 0 #//gordo/Estaticos /mnt/smb smbfs auto,rw,ip=200.57.40.53,username=huitzi,password=Azte28Ca 0 0
// Dominion Libraries v.3.2 (c) 1999-2001 Philippe Thomassigny
// mail: metalwolf@parisfree.com , ICQ # 10079191
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// Modifications
// 13/07/2000 Ph. Thomassigny $_DEBUGDOMVAR_ variable programmed to debug queries
// 19/10/2000 Ph. Thomassigny Oracle Exec now return a 0 when error. (thanks to the comments of Anonymous)
// 02/02/2001 Ph. Thomassigny Login to mysql: if error say $this->Id = ""; instead of unset variable.
if (empty($__DOMVAR__))
{
$__DOMVAR__ = 1;
// Standard variables
define("ORACLE", 1);
define("POSTGRES", 2);
define("ODBC", 3);
define("MYSQL", 4);
define("INFORMIX", 5);
class DB_Base
{
var $Type;
var $Id;
function DB_Base($_Type = ORACLE)
{
$this->Type = $_Type;
}
function Logon($UN, $PW, $DB = "")
{
switch($this->Type)
{
case ORACLE:
$this->Id = OCILogon($UN, $PW, $DB);
break;
case POSTGRES:
$this->Id = pg_connect($DB); // $DB contains all the connect string
break;
case ODBC:
$this->Id = odbc_connect($DB, $UN, $PW);
break;
case MYSQL:
$this->Id = mysql_connect("localhost", $UN, $PW);
if ($this->Id && !mysql_select_db($DB, $this->Id))
{
mysql_close($this->Id);
$this->Id = "";
}
break;
case INFORMIX:
$this->Id = ifx_connect($DB, $UN, $PW);
break;
}
return $this->Id;
}
function LogOff()
{
switch($this->Type)
{
case ORACLE:
$ret = OCILogoff($this->Id);
break;
case POSTGRES:
$ret = pg_close($this->Id);
break;
case ODBC:
$ret = odbc_close($this->Id);
break;
case MYSQL:
$ret = mysql_close($this->Id);
break;
case INFORMIX:
$ret = ifx_close($this->Id);
break;
}
$this->Id = 0;
return $ret;
}
function Commit()
{
switch($this->Type)
{
case ORACLE:
return OCICommit($this->Id);
break;
case POSTGRES:
return true;
break;
case ODBC:
return odbc_commit($this->Id);
break;
case MYSQL;
return true;
break;
case INFORMIX:
return true;
break;
}
}
function Rollback()
{
switch($this->Type)
{
case ORACLE:
return OCIRollback($this->Id);
break;
case POSTGRES:
return true;
break;
case ODBC:
return odbc_rollback($this->Id);
break;
case MYSQL:
return true;
break;
case INFORMIX:
return true;
break;
}
}
}
class DB_Cursor
{
var $DB;
var $Cur;
var $Columns;
var $Item;
function DB_Cursor($_DB)
{
$this->DB = $_DB;
}
function Exec($_Sql)
{
if (isset($GLOBALS["_DEBUGDOMVAR_"]))
print "<br><b>$_Sql</b><br>\n";
switch($this->DB->Type)
{
case ORACLE:
$this->Cur = OCIParse($this->DB->Id, $_Sql);
if (OCIError($this->Cur))
return 0;
OCIExecute($this->Cur);
if (OCIError($this->Cur))
return 0;
break;
case POSTGRES:
$this->Cur = pg_exec($this->DB->Id, $_Sql);
$this->Item = 0;
break;
case ODBC:
$this->Cur = odbc_exec($this->DB->Id, $_Sql);
break;
case MYSQL:
$this->Cur = mysql_query($_Sql, $this->DB->Id);
break;
case INFORMIX:
$this->Cur = ifx_query($_Sql, $this->DB->Id);
break;
}
return $this->Cur;
}
function Fetch()
{
switch($this->DB->Type)
{
case ORACLE:
$ret = OCIFetchInto($this->Cur, &$this->Columns);
if (!$ret)
{ $this->Columns = 0;
return 0;
}
break;
case POSTGRES:
$this->Columns = @pg_fetch_row($this->Cur, $this->Item++);
break;
case ODBC:
$ret = odbc_fetch_into($this->Cur, 0, &$this->Columns);
if (!$ret)
{ $this->Columns = 0;
return 0;
}
break;
case MYSQL:
$this->Columns = mysql_fetch_row($this->Cur);
break;
case INFORMIX:
$this->Columns = ifx_fetch_row($this->Cur);
break;
}
return $this->Columns;
}
function Column($_i)
{
switch($this->DB->Type)
{
case ORACLE:
case POSTGRES:
case MYSQL:
return $this->Columns[$_i];
break;
case ODBC:
return odbc_result($this->Cur, $_i);
break;
return $this->Columns[$_i];
break;
case INFORMIX:
reset($this->Columns);
for ($i = 0; $i < $_i; $i ++)
{ next($this->Columns);
}
return current($this->Columns);
break;
}
}
function Close()
{
switch($this->DB->Type)
{
case ORACLE:
$ret = OCIFreeStatement($this->Cur);
$this->Cur = 0;
break;
case POSTGRES:
$ret = pg_freeresult($this->Cur);
$this->Cur = 0;
break;
case ODBC:
$this->Cur = 0;
return true;
break;
case MYSQL:
$this->Cur = 0;
return true;
break;
case INFORMIX:
$ret = ifx_free_result($this->Cur);
$this->Cur = 0;
break;
}
return $ret;
}
}
}
root:x:0:0:El Super Usuario:/root:/bin/bash ruth:x:0:0:La Super Usuaria:/root:/bin/bash bin:x:1:1:bin:/bin: daemon:x:2:2:daemon:/sbin:
adm:x:3:4:adm:/var/adm:
lp:x:4:7:lp:/var/spool/lpd:
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:
news:x:9:13:news:/var/spool/news:
uucp:x:10:14:uucp:/var/spool/uucp:
operator:x:11:0:operator:/root:
games:x:12:100:games:/usr/games:
gopher:x:13:30:gopher:/usr/lib/gopher-data:
ftp:x:14:50:FTP User:/var/ftp:
ssh:x:20:20:SSH non-privileged user::
ssd:x:20:20:SSH non-privileged user::
amavis:x:24:24:Amavis non-privileged user:/var/spool/mqamavis:
smmsp:x:25:25:Sendmail MSP:/var/spool/clientmqueue:
named:x:26:26:Name Daemon::
mysql:x:27:200:MySQL Server:/home/mysql:/bin/bash
nscd:x:28:28:NSCD Daemon:/:/bin/false
rpcuser:x:29:16:RPC Service User:/var/lib/nfs:/bin/false
rpc:x:32:32:Portmapper RPC user:/:/bin/false
rpm:x:37:37::/var/lib/rpm:/bin/bash
cups:x:39:39:Common Unix Printing System::
gdm:x:42:42:::
xfs:x:43:43:X Font Server:/etc/X11/fs:/bin/false
apache:x:48:48:Apache:/home/sites:/bin/false
ldap:x:55:55:LDAP User:/var/lib/ldap:/bin/false
pcap:x:77:77::/var/arpwatch:/sbin/nologin
ident:x:98:98:pident user:/:/bin/false
nobody:x:99:99:Nobody::
ecartis:x:101:101:Ecartis mailing list manager:/home/ecartis:/bin/bash
listar:x:101:101:Listar mailing list manager:/home/listar:/bin/bash
mrtg:x:102:102:Multi Router Traffic Analyzer:/home/mrtg:
webalizer:x:103:103:Web traffic analyzer:/home/webalizer:
icecast:x:104:104:Icecast Streaming Server:/usr/local/icecast:
ircd:x:105:105:IRC daemon:/usr/local/irc:
lufs:x:106:106:LUFS user:/home/lufs:
jabber:x:107:107:Jabber user:/home/jabber:
helix:x:108:108:helix server user::
postgres:x:200:200:PostgreSQL Server:/usr/local/pgsql:/bin/bash
cvsadmin:x:201:201:Superusuario de CVS:/cvs:/bin/laden
cvs:x:202:202:Usuario de CVS:/cvs:/bin/laden
ntop:x:300:300:Ntop User:/usr/local/var/ntop:/bin/false
snort:x:301:301:Snort User::/bin/false
encoder:x:302:302:Streaming encoder:/home/encoder:/bin/bash
logmailer:x:303:303:Log Mailer:/home/logmailer:/bin/bash
armagedon:x:305:305:Armagedon:/home/armagedon:/bin/laden
sandino:x:500:499:Sandino Araico Sánchez:/home/sandino:/bin/bash
00sandino:x:500:499:Sandino Araico Sánchez (virtual):/home/sandino:/bin/false
jaruz:x:501:499:Juan Antonio Ruiz Zwollo:/home/jaruz:/bin/bash
01jaruz:x:501:499:Juan Antonio Ruiz Zwollo (virtual):/home/jaruz:/bin/false
lgonzalez:x:502:499:Laura González Garduño:/home/lgonzalez:/bin/bash
02lgonzalez:x:502:499:Laura González Garduño (virtual):/home/lgonzalez:/bin/false
03kenji:x:503:499:Kenji Sato:/home/kenji:/bin/false
05tania:x:505:499:Tania Alinka OrtÃz:/home/tania:/bin/false
06myrna:x:506:499:Myrna Bustos P:/home/myrna:/bin/false
07mcarmen:x:507:499:MarÃa del Carmen Ojeda:/home/maricarmen:/bin/false
07maricarmen:x:507:499:MarÃa del Carmen Ojeda:/home/maricarmen:/bin/false
08beto:x:508:499:Luis Alberto Bolaños:/home/beto:/bin/false
09emilio:x:509:499:Emilio Saldaña:/home/emilio:/bin/false
temp1:x:511:511:José Alfredo Hernández - Discapacidad:/tmp:/bin/false
temp2:x:512:512:ciudadano:/tmp:/bin/false
temp3:x:513:513:Mexicanos en el exterior:/tmp:/bin/false
temp4:x:514:514:Contigo - mrivera:/tmp:/bin/false
temp5:x:515:515:Cuenta 5 para uso temp:/tmp:/bin/false
temp6:x:516:516:Cuenta 6 para uso temp:/tmp:/bin/false
temp7:x:517:517:Cuenta 7 para uso temp:/tmp:/bin/false
temp8:x:518:518:Boletin - Clara Torres:/tmp:/bin/false
temp9:x:519:519:Invitado de Beto en la Guadalupe:/tmp:/bin/false
kbrown:x:520:500:Charly Brown:/home/kbrown:/bin/laden
prueba:x:521:500:Usuario de prueba 0:/home/prueba:/bin/laden
prueba1:x:522:500:Usuario de prueba 1:/home/prueba1:/bin/laden
manual:x:523:500:Usuario de documentacion:/home/manual:/bin/laden
24olguin:x:524:499:Jesus OlguÃn Sánchez:/home/olguin:/bin/false
25ccobos:x:525:499:Carmen Cobos González:/home/ccobos:/bin/false
26meche:x:526:499:MarÃa de las Mercedes Bolaños Vera:/home/meche:/bin/false
27gabriel:x:527:499:Gabriel Benavides:/home/gabriel:/bin/false
28jamon:x:528:499:BenjamÃn Gonzalez Rubio Aguilar:/home/jamon:/bin/laden
juanita:x:529:499:MarÃa Juana Méndez:/home/juanita:/bin/bash
33itze:x:533:499:Silvia Itze Gómez Meza:/home/itze:/bin/false
34mario:x:534:499:Mario Dehesa:/home/mario:/bin/false
35espe:x:535:499:Esperanza Aguilar:/home/espe:/bin/false
36fbalderas:x:536:499:Fernando Balderas (el gordito):/home/fbalderas:/bin/false
fernando:x:537:499:Fernando Aquino:/home/fernando:/bin/bash
temp10:x:540:540:Cuenta 10 para uso temp:/tmp:/bin/false
temp11:x:541:541:Upload:/tmp:/bin/false
temp12:x:542:542:Cuenta upload temp para Diveo:/tmp:/bin/false
temp13:x:543:543:Cuenta 13 para uso temp:/tmp:/bin/false
temp14:x:544:544:Cuenta 14 para uso temp:/tmp:/bin/false
temp15:x:545:545:Cuenta 15 para uso temp:/tmp:/bin/false
temp16:x:546:546:Cuenta 16 para uso temp:/tmp:/bin/false
temp17:x:547:547:Cuenta 17 para uso temp:/tmp:/bin/false
temp18:x:548:548:Cuenta 18 para uso temp:/tmp:/bin/false
temp19:x:549:549:Cuenta 19 para uso temp:/tmp:/bin/false
sip:x:1000:1000:Sistema Internet de Presidencia - correo:/home/sip/sip:/bin/false
sip/beto:x:1000:1000:Beto Bolaños:/home/sip/beto:/bin/false
sip/carmen:x:1000:1000:Carmen Cobos:/home/sip/carmen:/bin/false
sip/fbalderas:x:1000:1000:Fernando Balderas:/home/sip/fbalderas:/bin/false
fernando01:x:1000:499:Fernando Aquino:/home/sip/fernando:/bin/false
sip/gabriel:x:1000:1000:Gabriel Benavides:/home/sip/gabriel:/bin/false
sip/jesus:x:1000:1000:Jesús Olguin:/home/sip/jesus:/bin/false
#sip/karina:x:1000:1000:Karina Castellanos:/home/sip/karina:/bin/false
#sip/kenji:x:1000:1000:Kenji Sato:/home/sip/kenji:/bin/false
sip/laura:x:1000:1000:Laura González:/home/sip/laura:/bin/false
sip/mario:x:1000:1000:Mario Dehesa:/home/sip/mario:/bin/false
sip/sandino:x:1000:1000:Sandino:/home/sip/sandino:/bin/false
sip/translator:x:1000:1000:Philip Dale:/home/sip/translator:/bin/false
sip/espe:x:1000:1000:Esperanza Aguilar:/home/sip/espe:/bin/false
sip/meche:x:1000:1000:Mercedes Bolaños:/home/sip/meche:/bin/false
sip/mercedes:x:1000:1000:Mercedes Bolaños:/home/sip/mercedes:/bin/false
sip/silvia:x:1000:1000:Silvia Marquez:/home/sip/silvia:/bin/false
sip/maricarmen:x:1000:1000:Maricarmen Ojeda:/home/sip/maricarmen:/bin/false
sip/tania:x:1000:1000:Tania Ortiz:/home/sip/tania:/bin/false
sip/myrna:x:1000:1000:Myrna Bustos:/home/sip/myrna:/bin/false
sip/salaprensa:x:1000:1000:Sala de Prensa:/home/sip/salaprensa:/bin/false
sip/foto:x:1000:1000:FotografÃa - Imperio:/home/sip/foto:/bin/false
sip/buenasnoticias:x:1000:1000:Buenas Noticias de las dependencias:/home/sip/buenasnoticias:/bin/false
sip/webmaster:x:1000:1000:El Webmaster de Presidencia y del SIP :/home/sip/webmaster:/bin/false
sip/ana:x:1000:1000:Ana GarcÃa :/home/sip/ana:/bin/false
sip/imperio:x:1000:1000:Imperio :/home/sip/imperio:/bin/false
sip/gmorris:x:1000:1000:Angela Morris Montalvo :/home/sip/gmorris:/bin/false
sip/chernandez:x:1000:1000:MarÃa Eugenia Hernández Begoña :/home/sip/chernandez:/bin/false
sip/osboddy:x:1000:1000:Omar Saavedra Boddy :/home/sip/osboddy:/bin/false
sip/gvelasco:x:1000:1000:Guillermo Barrera Velasco :/home/sip/gvelasco:/bin/false
sip/ccalvin:x:1000:1000:Claudia Calvin Venero :/home/sip/ccalvin:/bin/false
sip/miniguez:x:1000:1000:Mayra Iñiguez Aguilar :/home/sip/ana:/bin/false
sip/kperez:x:1000:1000:Karla Pérez Ascencio :/home/sip/kperez:/bin/false
sip/mmendez:x:1000:1000:Mónica Méndez Berumen :/home/sip/mmendez:/bin/false
sip/jmolina:x:1000:1000:Jaime Molina Ortega :/home/sip/jmolina:/bin/false
sip/lvazquez:x:1000:1000:Leticia Vázquez Jiménez :/home/sip/lvazquez:/bin/false
sip/cortiz:x:1000:1000:Claudia OrtÃz Barón :/home/sip/cortiz:/bin/false
sip/alopezmestre:x:1000:1000:Ana Lópezmestre MartÃnez :/home/sip/alopezmestre:/bin/false
sip/azubieta:x:1000:1000:Ana Isabel Zubieta :/home/sip/azubieta:/bin/false
sip/arios:x:1000:1000:Amparo RÃos Alvarez :/home/sip/arios:/bin/false
sip/iolivo:x:1000:1000:Irma Olivo Ortega :/home/sip/iolivo:/bin/false
sip/nzamora:x:1000:1000:Norma Zamora Flores :/home/sip/nzamora:/bin/false
sip/dario:x:1000:1000:DarÃo Mendoza :/home/sip/dario:/bin/false
sip/dtacher:x:1000:1000:Daniel Tacher Contreras :/home/sip/dtacher:/bin/false
sip/davidm:x:1000:1000:David Monjaraz Gómez :/home/sip/davidm:/bin/false
sip/rmoreno:x:1000:1000:Rebeca Moreno Lara :/home/sip/rmoreno:/bin/false
sip/argote:x:1000:1000:Gerardo Argote :/home/sip/argote:/bin/false
sip/mcuan:x:1000:1000:Mario Cuan :/home/sip/mcuan:/bin/false
sip/ngutierrez:x:1000:1000:Nicolás Gutiérrez :/home/sip/ngutierrez:/bin/false
sip/gyanez:x:1000:1000:Guadalupe Yáñez :/home/sip/gyanez:/bin/false
sip/lgrimaldo:x:1000:1000:Lourdes Grimaldo :/home/sip/lgrimaldo:/bin/false
sip/ventana:x:1000:1000:Ventana al cambio - Andrea castro :/home/sip/ventana:/bin/false
sip/antoine:x:1000:1000:Antoine Saint-Michel:/home/sip/antoine:/bin/false
sip/mariana:x:1000:1000:Mariana Pedrero:/home/sip/mariana:/bin/false
sip/juan:x:1000:1000:Juan, me lo pidio Beto:/home/sip/juan:/bin/false
sip/juliocesar:x:1000:1000:Julio Cesar, me lo pidio Beto:/home/sip/juliocesar:/bin/false
sip/sandra:x:1000:1000:Sandra, me lo pidio Beto:/home/sip/sandra:/bin/false
sip/marta1:x:1000:1000:Para el sitio de martadefox:/home/sip/marta1:/bin/false
sip/marta2:x:1000:1000:Para el sitio de martadefox:/home/sip/marta2:/bin/false
xi:x:1001:1001:XI Conferencia - correo:/home/xi/xi:/bin/false
xi/cip:x:1001:1001:XI Conferencia - correo:/home/xi/cip:/bin/false
xi/karla:x:1001:1001:Karla Pérez-Asencio:/home/xi/karla:/bin/false
xi/claudia:x:1001:1001:Claudia Kalvin:/home/xi/claudia:/bin/false
xi/coordinacion:x:1001:1001:Coordinación:/home/xi/coordinacion:/bin/false
contigo:x:1002:1002:Contigo - correo:/home/contigo/contigo:/bin/false
contigo/dantoni:x:1002:1002:Diego Antoni:/home/contigo/dantoni:/bin/false
contigo/mrivera:x:1002:1002:Miguel Rivera:/home/contigo/mrivera:/bin/false
contigo/secretariadotecnico:x:1002:1002:Secretariado Tecnico:/home/contigo/secretariado:/bin/false
contigo/rfreyre:x:1002:1002:Rafael Freyre:/home/contigo/rfreyre:/bin/false
contigo/tvilar:x:1002:1002:Tábata Vilar:/home/contigo/tvilar:/bin/false
contigo/rgallegos:x:1002:1002:Rodrigo Gallegos:/home/contigo/rgallegos:/bin/false
contigo/smarquez:x:1002:1002:Sandra Márquez:/home/contigo/rgallegos:/bin/false
contigo/sbustamante:x:1002:1002:Silvia Bustamante:/home/contigo/sbustamante:/bin/false
contigo/dgomez:x:1002:1002:Danniel Gómez:/home/contigo/dgomez:/bin/false
kaspersky:x:1003:1003::/home/kaspersky:/bin/false
fifth:x:1005:1005:Fifth Global Forum - correo:/home/fifth/fifth:/bin/false
fifth/info:x:1005:1005:info@fifthglobalforum.org:/home/fifth/info:/bin/false
nbari:x:1006:1006::/home/nbari:/bin/bash
<iframe src="http://www.dan-alonso.org/blog/?style=1" width="250" scrolling="no" height="300" frameborder="0"></iframe>obtendrás algo asÃ