정보보안기사/linux

[실습] http #2

멋쟁이천재사자 2023. 7. 26. 20:57

Directory Listing .htAccess 공부중

 

 

┌──(root㉿kali)-[/etc/apache2]
└─# ls /var/log/apache2
access.log  access.log.1  error.log  error.log.1  error.log.2.gz  other_vhosts_access.log

 

# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>


#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

'정보보안기사 > linux' 카테고리의 다른 글

[실습] 익명 FTP  (0) 2023.07.27
[실습] iptables #2  (0) 2023.07.27
[실습] iptables (--name -j)  (0) 2023.07.25
[실습] snort  (0) 2023.07.25
[실습] tcp wrapper  (0) 2023.07.24