/external/honggfuzz/examples/apache-httpd/ |
D | README.md | 16 2. Download and unpack the following packages: apr, apr-util, ngttp2, and Apache's httpd 17 3. Patch Apache's httpd 20 $ cd httpd-master 21 $ patch -p1 < httpd-master.honggfuzz.patch 30 5. Copy custom configuration files (```httpd.conf.h1``` and ```httpd.conf.h2```) to ```/home/$USER/… 33 $ cp httpd.conf.h1 httpd.conf.h2 /home/$USER/fuzz/apache/apache2/conf/ 36 6. Edit ```httpd.conf.h1``` and ```httpd.conf.h2```, so they contain valid configuration paths 43 …ggfuzz -f corpus_http1 -w ./httpd.wordlist -- ./apache2/bin/httpd -DFOREGROUND -f /home/$USER/fuz… 49 …ggfuzz -f corpus_http2 -w ./httpd.wordlist -- ./apache2/bin/httpd -DFOREGROUND -f /home/$USER/fuzz…
|
/external/libcap/contrib/ |
D | pcaps4server | 84 sed -i -e "{s|^\(User\).*|\1 apache|; s|^\(Group\) .*|\1 apache|}" /etc/apache/httpd.conf 88 chown $VERBOSE apache:apache /usr/sbin/httpd 89 chmod $VERBOSE u+s /usr/sbin/httpd 90 setcap cap_net_bind_service=ep /usr/sbin/httpd 98 chown $VERBOSE root:root /usr/sbin/httpd 99 chmod $VERBOSE u-s /usr/sbin/httpd 100 setcap -r /usr/sbin/httpd 102 sed -i -e "{s|^\(User\).*|\1 nobody|; s|^\(Group\).*|\1 nogroup|}" /etc/apache/httpd.conf 119 sed -i -e "{s|^\(User\).*|\1 apache|; s|^\(Group\) .*|\1 apache|}" /etc/httpd/httpd.conf 120 chown $VERBOSE -R apache:apache /var/run/httpd/ [all …]
|
/external/selinux/python/audit2allow/ |
D | test.log | 6 …=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts10 comm="httpd" exe="/usr/sbin/httpd" subj=s… 7 …dit(1165963069.244:851): avc: denied { name_bind } for pid=21134 comm="httpd" src=81 scontext=s… 12 …=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts10 comm="httpd" exe="/usr/sbin/httpd" subj=s… 13 …(1165963069.244:852): avc: denied { name_connect } for pid=21134 comm="httpd" src=81 scontext=s… 15 …=48 suid=48 fsuid=48 egid=48 sgid=48 fsgid=48 tty=(none) comm="httpd" exe="/usr/sbin/httpd" subj=s… 16 …6017682.366:877): avc: denied { execute_no_trans } for pid=23768 comm="httpd" name="index.html"… 17 …=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts10 comm="httpd" exe="/usr/sbin/httpd" subj=s… 18 …(1165963069.244:853): avc: denied { name_connect } for pid=21134 comm="httpd" src=81 scontext=s… 19 …=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts10 comm="httpd" exe="/usr/sbin/httpd" subj=s… 20 …(1165963069.244:853): avc: denied { name_connect } for pid=21134 comm="httpd" src=81 scontext=s… [all …]
|
/external/ltp/testcases/kernel/syscalls/epoll2/examples/ |
D | Makefile | 31 all: blaster httpd pipetest 39 httpd: $(SOURCES) target 40 $(CC) $(CFLAGS) -DDPHTTPD -o $(OUTDIR)/epoll-httpd $(SOURCES) $(LIBS) 49 @rm -f *~ $(OUTDIR)/epoll-blaster $(OUTDIR)/epoll-httpd $(OUTDIR)/epoll-pipetest
|
/external/grpc-grpc/test/core/http/ |
D | test_server.py | 53 httpd = BaseHTTPServer.HTTPServer(('localhost', args.port), Handler) variable 55 httpd.socket = ssl.wrap_socket(httpd.socket, certfile=_PEM, keyfile=_KEY, server_side=True) 56 httpd.serve_forever()
|
/external/python/oauth2client/oauth2client/ |
D | tools.py | 202 httpd = ClientRedirectServer((flags.auth_host_name, port), 230 httpd.handle_request() 231 if 'error' in httpd.query_params: 233 if 'code' in httpd.query_params: 234 code = httpd.query_params['code']
|
/external/tensorflow/tensorflow/contrib/cloud/python/ops/ |
D | bigquery_reader_ops_test.py | 114 self.httpd = socketserver.TCPServer((address, port), self.handler) 115 self.host_port = "{}:{}".format(*self.httpd.server_address) 117 self.httpd = IPv6TCPServer((address, port), self.handler) 118 self.host_port = "[{}]:{}".format(*self.httpd.server_address) 121 self.httpd.serve_forever() 124 self.httpd.shutdown() 125 self.httpd.socket.close()
|
/external/python/httplib2/python2/httplib2/test/functional/ |
D | test_proxies.py | 36 self.httpd, self.proxyport = miniserver.start_server(miniserver.ThisDirHandler) 37 self.httpd.shutdown() 38 self.httpd, self.port = miniserver.start_server(miniserver.ThisDirHandler) 62 self.httpd.shutdown()
|
/external/python/httplib2/python2/httplib2/test/ |
D | miniserver.py | 111 httpd = ShutdownServer(use_tls, ("", 0), handler) 112 threading.Thread(target=httpd.serve_forever).start() 113 _, port = httpd.socket.getsockname() 114 return httpd, port
|
D | smoke_test.py | 11 self.httpd, self.port = miniserver.start_server(miniserver.ThisDirHandler) 14 self.httpd.shutdown()
|
/external/autotest/site_utils/lxc/ |
D | unittest_http.py | 38 httpd = SocketServer.TCPServer( 40 port = httpd.socket.getsockname()[1] 46 httpd.serve_forever()
|
/external/python/cpython2/Lib/wsgiref/ |
D | simple_server.py | 157 httpd = make_server('', 8000, demo_app) variable 158 sa = httpd.socket.getsockname() 162 httpd.handle_request() # serve one request, then exit 163 httpd.server_close()
|
/external/python/oauth2client/tests/ |
D | test_tools.py | 39 httpd = tools.ClientRedirectServer(('localhost', 0), 43 httpd.server_address[1], code) 44 t = threading.Thread(target=httpd.handle_request) 50 httpd.server_close() 51 self.assertEqual(httpd.query_params.get('code'), code)
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | utils.py | 186 httpd = server_class(address, SilentWSGIRequestHandler) 187 httpd.set_app(app) 188 httpd.address = httpd.server_address 190 target=lambda: httpd.serve_forever(poll_interval=0.05)) 193 yield httpd 195 httpd.shutdown() 196 httpd.server_close()
|
D | test_streams.py | 56 with test_utils.run_test_server() as httpd: 57 conn_fut = asyncio.open_connection(*httpd.address, 63 with test_utils.run_test_unix_server() as httpd: 64 conn_fut = asyncio.open_unix_connection(httpd.address, 82 with test_utils.run_test_server(use_ssl=True) as httpd: 84 *httpd.address, 93 with test_utils.run_test_unix_server(use_ssl=True) as httpd: 95 httpd.address, 112 with test_utils.run_test_server() as httpd: 113 conn_fut = asyncio.open_connection(*httpd.address, [all …]
|
/external/libpcap/testprogs/ |
D | visopts.py | 285 httpd = MySocketServer(("localhost", 0), Handler) 286 print "open this link: http://localhost:%d/expr1.html" % (httpd.server_address[1]) 288 httpd.serve_forever()
|
/external/skqp/experimental/canvaskit/ |
D | serve.py | 18 httpd = SocketServer.TCPServer(("", PORT), Handler) variable 20 httpd.serve_forever()
|
/external/skqp/modules/pathkit/ |
D | serve.py | 18 httpd = SocketServer.TCPServer(("", PORT), Handler) variable 20 httpd.serve_forever()
|
/external/skia/modules/canvaskit/ |
D | serve.py | 18 httpd = SocketServer.TCPServer(("", PORT), Handler) variable 20 httpd.serve_forever()
|
/external/skia/modules/pathkit/ |
D | serve.py | 18 httpd = SocketServer.TCPServer(("", PORT), Handler) variable 20 httpd.serve_forever()
|
/external/skia/experimental/wasm-skp-debugger/ |
D | serve.py | 18 httpd = SocketServer.TCPServer(("", PORT), Handler) variable 20 httpd.serve_forever()
|
/external/python/cpython2/Tools/scripts/ |
D | serve.py | 30 httpd = simple_server.make_server('', port, app) variable 33 httpd.serve_forever()
|
/external/python/cpython3/Tools/scripts/ |
D | serve.py | 30 httpd = simple_server.make_server('', port, app) variable 33 httpd.serve_forever()
|
/external/python/cpython3/Lib/wsgiref/ |
D | simple_server.py | 159 with make_server('', 8000, demo_app) as httpd: 160 sa = httpd.socket.getsockname() 164 httpd.handle_request() # serve one request, then exit
|
/external/autotest/client/cros/cellular/ |
D | forward_8960_screen | 111 httpd = BaseHTTPServer.HTTPServer(('', http_server_port), PageHandler) variable 114 httpd.serve_forever()
|