mirror of
https://github.com/DepthFirstDisclosures/Nginx-Rift.git
synced 2026-05-16 11:07:44 +00:00
5 lines
203 B
Bash
Executable file
5 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
cd /app
|
|
python3 server.py &>/dev/null &
|
|
# setarch -R disables ASLR for the launched process (deterministic addresses)
|
|
exec setarch x86_64 -R /nginx-src/build/nginx -p /app -c /app/nginx.conf
|