-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
siege segfaults with -c 2 on localhost #191
Comments
Could you try 4.0.8?
…On Sat, Apr 10, 2021, 6:13 PM Florian Berger ***@***.***> wrote:
I am trying to put some very moderate load on a local lighttpd setup.
However, siege segfaults already at -c 2:
$ siege -c 2 "http://127.0.0.1:8080/doku.php?id=wiki:welcome"
** SIEGE 4.0.7
** Preparing 2 concurrent users for battle.
The server is now under siege...
HTTP/1.1 200 0.01 secs: 13756 bytes ==> GET /doku.php?id=wiki:welcome
HTTP/1.1 200 0.01 secs: 13756 bytes ==> GET /doku.php?id=wiki:welcome
HTTP/1.1 200 0.00 secs: 13756 bytes ==> GET /doku.php?id=wiki:welcome
Segmentation fault
Maybe that is my setup - requests go to a local virtual machine - but
there's lot's of free RAM and CPU.
I am not too familiar with gdb & friends, but I will gladly provide any
more information needed.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#191>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZSPSTSBRED7NKHJKF3TIDERFANCNFSM42W6H3DQ>
.
|
That's not yet in Arch Linux, so I will have to compile it myself. On it. Meanwhile, I can confirm that 4.0.7 segfaults as well when said app is run at an external host. |
Same behaviour with fresh-compiled siege 4.0.8:
|
Weird.
Let's get the backtrace:
gdb /path/to/siege
run -c 2 "https://HOST/doku.php?id=wiki:welcome
<https://host/doku.php?id=wiki:welcome>" after the segfault, type:
bt
Paste the output here
…On Sun, Apr 11, 2021 at 4:48 AM Florian Berger ***@***.***> wrote:
Same behaviour with fresh-compiled siege 4.0.8:
$ ~/temp/siege-4.0.8/src/siege -c 2 "https://HOST/doku.php?id=wiki:welcome"
** SIEGE 4.0.8
** Preparing 2 concurrent users for battle.
The server is now under siege...
HTTP/1.1 200 0.14 secs: 4246 bytes ==> GET /doku.php?id=wiki:welcome
HTTP/1.1 200 0.14 secs: 4246 bytes ==> GET /doku.php?id=wiki:welcome
Segmentation fault
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZSUI4DWONAF6DQGN7TTIFO4DANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
There you go:
|
I'm having trouble reproducing this. Could you try this:
siege -c 2 "http://localhost:8080/doku.php?id=wiki:welcome
<http://127.0.0.1:8080/doku.php?id=wiki:welcome>"
Make sure "localhost" resolves.
…On Sun, Apr 11, 2021 at 2:28 PM Florian Berger ***@***.***> wrote:
There you go:
[Switching to Thread 0x7ffff7222640 (LWP 1499)]
cookie_get_domain (this=0x0) at cookie.c:155
155 if (this->domain == NULL)
(gdb) bt
#0 cookie_get_domain (this=0x0) at cookie.c:155
#1 0x0000555555561a8e in cookies_header (this=0x5555555813b0, host=0x5555555af970 "lighttpd.sru.pt", ***@***.***=0x7ffff721ebc0 "") at cookies.c:193
#2 0x00005555555659b2 in http_get (C=0x7fffe8000b60, ***@***.***=0x5555555afa30) at http.c:165
#3 0x000055555555f38e in __http ***@***.***=0x5555555c3f10, ***@***.***=0x5555555afa30) at browser.c:481
#4 0x000055555555fccf in __request (U=0x5555555afa30, this=0x5555555c3f10) at browser.c:406
#5 start (this=0x5555555c3f10) at browser.c:295
#6 0x0000555555562985 in crew_thread (crew=0x5555555c4030) at crew.c:141
#7 0x00007ffff7f8f299 in start_thread () from /usr/lib/libpthread.so.0
#8 0x00007ffff7b28053 in clone () from /usr/lib/libc.so.6
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZXAJTQ3K7IVWFHBTHTTIHS47ANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
Here you are:
|
I am unable to reproduce this error.
I thought maybe it had something to do with domain parsing since you're
just using localhost (or an IP address) but I don't have the same problem
as seen in this example:
To test that, I ran a localhost request like this:
siege -c2 -r2 localhost/cookie-expire.php
** SIEGE 4.0.8
** Preparing 2 concurrent users for battle.
The server is now under siege...
HTTP/1.1 200 0.01 secs: 24 bytes ==> GET /cookie-expire.php
HTTP/1.1 200 0.01 secs: 24 bytes ==> GET /cookie-expire.php
HTTP/1.1 200 0.00 secs: 121 bytes ==> GET /cookie-expire.php
HTTP/1.1 200 0.00 secs: 121 bytes ==> GET /cookie-expire.php
As you can see, it's fine.
Could you run it again with -D like this:
run -D -c 2 "http://localhost:8080/doku.php?id=wiki:welcome"
That should print the headers. I want to see the cookie(s) that are
being set by the server
…On Sun, Apr 11, 2021 at 7:26 PM Florian Berger ***@***.***> wrote:
Here you are:
(gdb) run -c 2 "http://localhost:8080/doku.php?id=wiki:welcome"
Starting program: siege-4.0.8/src/siege -c 2 "http://localhost:8080/doku.php?id=wiki:welcome"
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[New Thread 0x7ffff7a23640 (LWP 20871)]
[New Thread 0x7ffff7222640 (LWP 20872)]
[New Thread 0x7ffff6a21640 (LWP 20873)]
[New Thread 0x7ffff6220640 (LWP 20874)]
** SIEGE 4.0.8
** Preparing 2 concurrent users for battle.
The server is now under siege...
HTTP/1.1 200 0.01 secs: 13756 bytes ==> GET /doku.php?id=wiki:welcome
HTTP/1.1 200 0.01 secs: 13756 bytes ==> GET /doku.php?id=wiki:welcome
Thread 3 "siege" received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ffff7222640 (LWP 20872)]
cookie_get_domain (this=0x0) at cookie.c:155
155 if (this->domain == NULL)
(gdb) bt
#0 cookie_get_domain (this=0x0) at cookie.c:155
#1 0x0000555555561a8e in cookies_header (this=0x5555555813b0, host=0x5555555af970 "localhost", ***@***.***=0x7ffff721ebc0 "") at cookies.c:193
#2 0x00005555555659b2 in http_get (C=0x7fffe8000b60, ***@***.***=0x5555555afa30) at http.c:165
#3 0x000055555555f38e in __http ***@***.***=0x5555555c3f10, ***@***.***=0x5555555afa30) at browser.c:481
#4 0x000055555555fccf in __request (U=0x5555555afa30, this=0x5555555c3f10) at browser.c:406
#5 start (this=0x5555555c3f10) at browser.c:295
#6 0x0000555555562985 in crew_thread (crew=0x5555555c4030) at crew.c:141
#7 0x00007ffff7f8f299 in start_thread () from /usr/lib/libpthread.so.0
#8 0x00007ffff7b28053 in clone () from /usr/lib/libc.so.6
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZUTFJWQW3OJFRZJ4T3TIIV4FANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
|
There is no difference between the localhost and an actual server (obfuscated as HOST) in my tests - both run the same instance of dokuwiki. And both segfault with 2+ clients, while other sites I tested run fine. Here is my siege.conf:
I disabled cookies since I thought that might be the issue, to no avail. |
|
Now look at this: this starts to look like a dokuwiki issue. Ot it's dokuwiki + siege + my specific setup. siegeing the official dokuwiki site with 2 clients does not even complete one single request, it segfaults immediately.
|
Although the same happens with Wikipedia. So more likely my setup. But why? What's wrong? I am running a vanilla Arch Linux siege 4.0.8. binary now, on an up-to-date system.
|
Run it on wikipedia with -D enabled so we can see what you're getting back
from the server. It has something to do with cookie parsing. I could "fix"
the segfault - and will - but that won't fix your problem.
…On Fri, Apr 16, 2021 at 9:21 AM Florian Berger ***@***.***> wrote:
Although the same happens with Wikipedia. So more likely my setup. But
why? What's wrong? I am running a vanilla Arch Linux siege 4.0.8. binary
now, on an up-to-date system.
$ siege -c 2 "https://en.wikipedia.org/"
** SIEGE 4.0.8
** Preparing 2 concurrent users for battle.
The server is now under siege...
HTTP/1.1 301 0.13 secs: 0 bytes ==> GET /
HTTP/1.1 301 0.14 secs: 0 bytes ==> GET /
HTTP/1.1 200 0.15 secs: 20333 bytes ==> GET /wiki/Main_Page
HTTP/1.1 200 0.17 secs: 20333 bytes ==> GET /wiki/Main_Page
HTTP/1.1 301 0.12 secs: 0 bytes ==> GET /
HTTP/1.1 301 0.14 secs: 0 bytes ==> GET /
HTTP/1.1 200 0.17 secs: 20333 bytes ==> GET /wiki/Main_Page
HTTP/1.1 200 0.19 secs: 20333 bytes ==> GET /wiki/Main_Page
Segmentation fault
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZS677OAVAK5LWL5P2TTJA2VNANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
There we go.
|
Just for the record, I can |
You're using a packaged version, right? Any chance you could compile this
and try it:
http://download.joedog.org/siege/siege-4.0.8.tar.gz
…On Sat, Apr 17, 2021 at 9:35 AM Florian Berger ***@***.***> wrote:
Just for the record, I can siege -c 2 lots of other sites without any
problems from my machine. cnn.com, eff.org, amazon.com, moinmo.in, no
segfaults whatsoever.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZT2TAU4ACHRROYJBM3TJGFCXANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
My pleasure. dokuwiki.org:
|
Wikipedia:
|
Could you add this at cookies.c line 102:
if (new == NULL) {
printf("WTAF??????????????");
}
The block should look like this:
if (!found) {
new = (NODE*)malloc(sizeof(NODE));
if (new == NULL) {
printf("WTAF??????????????");
}
new->threadID = id;
new->cookie = oreo;
new->next = cur;
if (cur == this->head)
this->head = new;
else
pre->next = new;
}
…On Sun, Apr 18, 2021 at 8:39 AM Florian Berger ***@***.***> wrote:
Wikipedia:
$ ./src/siege -c 2 -D "https://en.wikipedia.org/"
** SIEGE 4.0.8: debugging enabled
Copyright (C) 2021 by Jeffrey Fulmer, et al.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
** Preparing 2 concurrent users for battle.
The server is now under siege...
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 305
X-Cache: cp3062 hit, cp3064 hit/3454
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 305
X-Cache: cp3062 hit, cp3064 hit/3456
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1072
X-Cache: cp3052 miss, cp3064 hit/14002
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1072
X-Cache: cp3052 miss, cp3064 hit/14005
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 306
X-Cache: cp3062 hit, cp3064 hit/3463
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 306
X-Cache: cp3062 hit, cp3064 hit/3465
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1073
X-Cache: cp3052 miss, cp3064 hit/14011
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1073
X-Cache: cp3052 miss, cp3064 hit/14015
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 307
X-Cache: cp3062 hit, cp3064 hit/3475
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
HTTP/1.1 301 Moved Permanently
Date: Sun, 18 Apr 2021 12:33:07 GMT
Server: mw1387.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 77d8af70-453a-466d-bfe4-5ba4f437fc67
Last-Modified: Sun, 18 Apr 2021 12:33:07 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 307
X-Cache: cp3062 hit, cp3064 hit/3476
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=18-Apr-2021;Path=/;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=18-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Thu, 20 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=18-Apr-2021;WMF-Last-Access-Global=18-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1074
X-Cache: cp3052 miss, cp3064 hit/14026
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
HTTP/1.1 200 OK
Date: Sun, 18 Apr 2021 12:20:20 GMT
Vary: Accept-Encoding,Cookie,Authorization
Server: ATS/8.0.8
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
X-Request-Id: 0bbc9e3c-cde1-4061-b467-fbcba563a822
Last-Modified: Sun, 18 Apr 2021 12:20:11 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 1074
X-Cache: cp3052 miss, cp3064 hit/14027
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19453
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
Segmentation fault
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZVE7GSVM7ZV32VK5N3TJLHGRANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
|
What environment is siege running in?
…On Mon, Apr 19, 2021 at 5:10 PM Florian Berger ***@***.***> wrote:
$ ./src/siege -c 2 -D "https://en.wikipedia.org/"
** SIEGE 4.0.8: debugging enabled
Copyright (C) 2021 by Jeffrey Fulmer, et al.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
** Preparing 2 concurrent users for battle.
The server is now under siege...
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 155
X-Cache: cp3062 miss, cp3064 hit/937
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 155
X-Cache: cp3062 miss, cp3064 hit/938
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3991
X-Cache: cp3052 miss, cp3064 hit/27853
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3991
X-Cache: cp3052 miss, cp3064 hit/27854
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 155
X-Cache: cp3062 miss, cp3064 hit/941
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3992
X-Cache: cp3052 miss, cp3064 hit/27857
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 155
X-Cache: cp3062 miss, cp3064 hit/943
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3992
X-Cache: cp3052 miss, cp3064 hit/27859
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 156
X-Cache: cp3062 miss, cp3064 hit/948
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3992
X-Cache: cp3052 miss, cp3064 hit/27864
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 156
X-Cache: cp3062 miss, cp3064 hit/950
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3993
X-Cache: cp3052 miss, cp3064 hit/27866
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 156
X-Cache: cp3062 miss, cp3064 hit/951
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET / HTTP/1.1
Host: en.wikipedia.org
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 301 Moved Permanently
Date: Mon, 19 Apr 2021 21:07:04 GMT
Server: mw1263.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Vary: Accept-Encoding,X-Forwarded-Proto,Cookie,Authorization
Cache-Control: s-maxage=1200, must-revalidate, max-age=0
X-Request-Id: 163d7ba2-fe91-45bc-b6f7-613bac2ac6b3
Last-Modified: Mon, 19 Apr 2021 21:07:04 GMT
Location: https://en.wikipedia.org/wiki/Main_Page
Content-Length <https://en.wikipedia.org/wiki/Main_PageContent-Length>: 0
Content-Type: text/html; charset=utf-8
Age: 156
X-Cache: cp3062 miss, cp3064 hit/953
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
Set-Cookie: WMF-Last-Access=19-Apr-2021;Path=/;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
Set-Cookie: WMF-Last-Access-Global=19-Apr-2021;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 May 2021 12:00:00 GMT
X-Client-IP: 90.187.69.93
Set-Cookie: GeoIP=DE:BE:Berlin:52.56:13.38:v4; Path=/; secure; Domain=.wikipedia.org
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3993
X-Cache: cp3052 miss, cp3064 hit/27867
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
GET /wiki/Main_Page HTTP/1.1
Host: en.wikipedia.org
Cookie: WMF-Last-Access=19-Apr-2021;WMF-Last-Access-Global=19-Apr-2021;GeoIP=DE:BE:Berlin:52.56:13.38:v4
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (pc-x86_64-linux-gnu) Siege/4.0.8
Connection: close
HTTP/1.1 200 OK
Date: Mon, 19 Apr 2021 20:03:08 GMT
Server: mw1385.eqiad.wmnet
X-Content-Type-Options: nosniff
P3p: CP="See https://en.wikipedia.org/wiki/Special:CentralAutoLogin/P3P for more info."
Content-Language: en
Vary: Accept-Encoding,Cookie,Authorization
X-Request-Id: a23427c9-6e38-4f27-88f9-6b58395b10e7
Last-Modified: Mon, 19 Apr 2021 20:03:06 GMT
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Age: 3993
X-Cache: cp3052 miss, cp3064 hit/27869
X-Cache-Status: hit-front
Server-Timing: cache;desc="hit-front", host;desc="cp3064"
Strict-Transport-Security: max-age=106384710; includeSubDomains; preload
Report-To: { "group": "wm_nel", "max_age": 86400, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] }
NEL: { "report_to": "wm_nel", "max_age": 86400, "failure_fraction": 0.05, "success_fraction": 0.0}
Permissions-Policy: interest-cohort=()
X-Client-IP: 90.187.69.93
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
Accept-Ranges: bytes
Content-Length: 19904
Connection: close
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
[debug] browser.c:909 good socket connection: en.wikipedia.org:443
[debug] browser.c:874 attempting connection to en.wikipedia.org:443
[debug] browser.c:889 creating new socket: en.wikipedia.org:443
Segmentation fault
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZQMBLCL7BEHENXCOZLTJSL5BANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
bash on an up-to-date Arch Linux.
glibc 2.33-4 |
Could you send me the output of ldd siege
…On Mon, Apr 19, 2021 at 5:38 PM Florian Berger ***@***.***> wrote:
bash on an up-to-date Arch Linux.
$ uname -a
Linux forger 5.11.12-artix1-1 #1 SMP PREEMPT Thu, 08 Apr 2021 12:24:52 +0000 x86_64 GNU/Linux
$ gcc --version
gcc (GCC) 10.2.0
glibc 2.33-4
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZQPGIF2SGCZXIJW2ZDTJSPFHANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
|
In your source directory you should have a config.log file. Could you send
me that?
…On Tue, Apr 20, 2021 at 2:55 AM Florian Berger ***@***.***> wrote:
$ ldd ./src/siege
linux-vdso.so.1 (0x00007fff477db000)
libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f3ff064e000)
libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f3ff0647000)
libssl.so.1.1 => /usr/lib/libssl.so.1.1 (0x00007f3ff05b6000)
libcrypto.so.1.1 => /usr/lib/libcrypto.so.1.1 (0x00007f3ff02d8000)
libz.so.1 => /usr/lib/libz.so.1 (0x00007f3ff02be000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007f3ff00f1000)
/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007f3ff06bb000)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#191 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJRHZSO74H6BNRSJVXNCZLTJUQNVANCNFSM42W6H3DQ>
.
--
Jeff Fulmer
1-717-799-8226
https://www.joedog.org/
He codes
|
|
I am trying to put some very moderate load on a local lighttpd setup. However, siege segfaults already at -c 2:
Maybe that is my setup - requests go to a local virtual machine - but there's lot's of free RAM and CPU.
I am not too familiar with gdb & friends, but I will gladly provide any more information needed.
The text was updated successfully, but these errors were encountered: