Re: [twsocket] Creatively annoying a host

2011-07-06 Thread Arno Garrels
Marc Charbonneau wrote: >> Or send a vast amount of rubbish data in response? In the best case some data that will crash their stupid HTTP client :) -- Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo

Re: [twsocket] Creatively annoying a host

2011-07-06 Thread Marc Charbonneau
> My various web servers suffer regular attacks looking for exploits, the > current one is looking for php, 100 odd URLs at a time including: > > GET //dbadmin/scripts/setup.php > GET //phpMyAdmin-2.5.5-rc1/scripts/setup.php > GET //mysqlmanager/scripts/setup.php > GET /muieblackcat > > In my ICS w

Re: [twsocket] Creatively annoying a host

2011-07-06 Thread Matt Minnis
I like the idea of sending massive amounts of random data to them Have a banned URL list and anyone requesting one on the list gets the contents of war and peace over and over... Or something equally interesting... As long as you have no bandwidth constraints, this should be golden. Need to cau

Re: [twsocket] Creatively annoying a host

2011-07-06 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: > My various web servers suffer regular attacks looking for exploits, > the current one is looking for php, 100 odd URLs at a time including: > > GET //dbadmin/scripts/setup.php > GET //phpMyAdmin-2.5.5-rc1/scripts/setup.php > GET //mysqlmanager/scripts

[twsocket] Creatively annoying a host

2011-07-06 Thread Angus Robertson - Magenta Systems Ltd
My various web servers suffer regular attacks looking for exploits, the current one is looking for php, 100 odd URLs at a time including: GET //dbadmin/scripts/setup.php GET //phpMyAdmin-2.5.5-rc1/scripts/setup.php GET //mysqlmanager/scripts/setup.php GET /muieblackcat In my ICS web server, I was

Re: [twsocket] Suggestion: set FLastError on session connect/disconnect

2011-07-06 Thread Arno Garrels
Anton S. wrote: > I now trying to implement sync socket actions (I'll need to make DLL > so async model doesn't fit). No problem to use async in a DLL, have a look at OverbyteIcsDll1 demo, it shows a multi-thread capable implementation. If you don't need MT have a look at the console demos, those

Re: [twsocket] Suggestion: set FLastError on session connect/disconnect

2011-07-06 Thread Anton S.
Hmm, things appeared not so simple as they seemed. Assigning LastError on both session connect and disconnect immediately rewrites connection error code with 0 caused by successful close. Currently I have no nice idea but maybe someone has? -- Anton -- To unsubscribe or change your settings fo

[twsocket] Suggestion: set FLastError on session connect/disconnect

2011-07-06 Thread Anton S.
I now trying to implement sync socket actions (I'll need to make DLL so async model doesn't fit). procedure TSockClient.Request; begin if State <> wsConnected then begin Connect; while not (State in [wsConnected, wsClosed]) do MessagePump; if State <> wsConnected then beg