I have a test application running on an Amazon EC2 with nginx.

I got this error and the app crashed.

Path 'w00tw00t.at.blackhats.romanian.anti-sec:)' -> '/w00tw00t.at.blackhats.roma
nian.anti-sec:)'
Task terminated with unhandled exception: Trying to append absolute path.
Full error: core.exception.AssertError@../../../../root/.dub/packages/vibe-d-mas
ter/source/vibe/inet/path.d(186): Trying to append absolute path.
----------------
./my-app(_d_assert_msg+0x45) [0x9835c5]
./my-app(const(vibe.inet.path.Path function(const(vibe.inet.path.Path))
) vibe.inet.path.Path.opBinary!("~").opBinary+0x9e) [0x949a72]
./my-app(void vibe.http.fileserver.serveStaticFiles(vibe.inet.path.Path
, vibe.http.fileserver.HTTPFileServerSettings).callback(vibe.http.server.HTTPSer
verRequest, vibe.http.server.HTTPServerResponse)+0x2bf) [0x93d163]
./my-app(void vibe.http.router.URLRouter.handleRequest(vibe.http.server
.HTTPServerRequest, vibe.http.server.HTTPServerResponse).void __lambda3!(ulong, 
immutable(char)[][]).__lambda3(ulong, scope immutable(char)[][])+0x1dc) [0x8c1d7
8]
./my-app(void vibe.http.router.MatchTree!(vibe.http.router.Route).Match
Tree.match(immutable(char)[], scope void delegate(ulong, scope immutable(char)[]
[]))+0x1dc) [0x8c23b8]
./my-app(void vibe.http.router.URLRouter.handleRequest(vibe.http.server
.HTTPServerRequest, vibe.http.server.HTTPServerResponse)+0x1ad) [0x8c1b39]
./my-app(bool vibe.http.server.handleRequest(vibe.core.stream.Stream, v
ibe.core.net.TCPConnection, vibe.http.server.HTTPServerListener, ref vibe.http.s
erver.HTTPServerSettings, ref bool)+0x1654) [0x942480]
./my-app(void vibe.http.server.handleHTTPConnection(vibe.core.net.TCPCo
nnection, vibe.http.server.HTTPServerListener)+0x1a3) [0x940d4b]
./my-app(void vibe.http.server.listenHTTPPlain(vibe.http.server.HTTPSer
verSettings).doListen(vibe.http.server.HTTPServerSettings, vibe.http.server.HTTP
ServerListener, immutable(char)[]).__lambda4(vibe.core.net.TCPConnection)+0x2c) 
[0x940a38]
./my-app(void vibe.core.drivers.libevent2_tcp.onConnect(int, short, voi
d*).ClientTask.execute()+0x328) [0x88f2a8]
./my-app(_D4vibe4core4core12__T7runTaskZ7runTaskFDFZvZS4vibe4core4task4
Task12callDelegateFC4vibe4core4core8CoreTaskZv+0x2b) [0x87c1f3]
./my-app(void vibe.core.core.CoreTask.run()+0x146) [0x8786aa]
./my-app(void core.thread.Fiber.run()+0x2a) [0x9c1dda]
./my-app(fiber_entryPoint+0x61) [0x9c1ce5]
[(nil)]
Segmentation fault (core dumped)

I think this w00tw00t kind of attack contains a GET request without a host.

Additionally how can somebody be notified when an app is crashing on the server? Could it be programmed in the vibe.d app itself or by using another application or script?

Thanks.