Delivery-Date: Sun, 05 Jul 2015 05:16:21 -0400
Return-Path: <tor-talk-bounces@lists.torproject.org>
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on moria.seul.org
X-Spam-Level: 
X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED,
	T_RP_MATCHES_RCVD autolearn=ham version=3.3.1
X-Original-To: archiver@seul.org
Delivered-To: archiver@seul.org
Received: from eugeni.torproject.org (eugeni.torproject.org [38.229.72.13])
	(using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by khazad-dum.seul.org (Postfix) with ESMTPS id 210F71E045F;
	Sun,  5 Jul 2015 05:16:19 -0400 (EDT)
Received: from eugeni.torproject.org (localhost [127.0.0.1])
	by eugeni.torproject.org (Postfix) with ESMTP id 264FC34D29;
	Sun,  5 Jul 2015 09:16:14 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by eugeni.torproject.org (Postfix) with ESMTP id CB61734C70
 for <tor-talk@lists.torproject.org>; Sun,  5 Jul 2015 09:16:10 +0000 (UTC)
X-Virus-Scanned: Debian amavisd-new at 
Received: from eugeni.torproject.org ([127.0.0.1])
 by localhost (eugeni.torproject.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id iTPJJwC2ThJV for <tor-talk@lists.torproject.org>;
 Sun,  5 Jul 2015 09:16:10 +0000 (UTC)
Received: from server4.tvdw.eu (lauravdw.com [IPv6:2001:1af8:4100:a00d:4::2])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256
 bits)) (Client did not present a certificate)
 by eugeni.torproject.org (Postfix) with ESMTPS id 9591B2CA2B
 for <tor-talk@lists.torproject.org>; Sun,  5 Jul 2015 09:16:10 +0000 (UTC)
Received: from 92-108-61-249.dynamic.upc.nl ([92.108.61.249]
 helo=Toms-MacBook-Pro.local)
 by server4.tvdw.eu with esmtpsa (TLSv1.2:DHE-RSA-AES128-SHA:128)
 (Exim 4.84) (envelope-from <info@tvdw.eu>) id 1ZBg1p-0006AX-Tp
 for tor-talk@lists.torproject.org; Sun, 05 Jul 2015 11:16:02 +0200
Message-ID: <5598F5D0.2090404@tvdw.eu>
Date: Sun, 05 Jul 2015 11:16:00 +0200
From: Tom van der Woerdt <info@tvdw.eu>
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10;
 rv:31.0) Gecko/20100101 Thunderbird/31.7.0
MIME-Version: 1.0
To: tor-talk@lists.torproject.org
References: <1436081118-sup-8166@metis.syd1.tesser.org>
 <20150705080113-728-76655-mailpile@mailpile-home>
In-Reply-To: <20150705080113-728-76655-mailpile@mailpile-home>
X-Content-Filtered-By: Mailman/MimeDel 2.1.15
Subject: Re: [tor-talk] OnionBalance Hidden Service has over 1 million
 successful hits in just 3 days
X-BeenThere: tor-talk@lists.torproject.org
X-Mailman-Version: 2.1.15
Precedence: list
Reply-To: tor-talk@lists.torproject.org
List-Id: "all discussion about theory, design,
 and development of Onion Routing" <tor-talk.lists.torproject.org>
List-Unsubscribe: <https://lists.torproject.org/cgi-bin/mailman/options/tor-talk>, 
 <mailto:tor-talk-request@lists.torproject.org?subject=unsubscribe>
List-Archive: <http://lists.torproject.org/pipermail/tor-talk/>
List-Post: <mailto:tor-talk@lists.torproject.org>
List-Help: <mailto:tor-talk-request@lists.torproject.org?subject=help>
List-Subscribe: <https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk>, 
 <mailto:tor-talk-request@lists.torproject.org?subject=subscribe>
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="us-ascii"; Format="flowed"
Errors-To: tor-talk-bounces@lists.torproject.org
Sender: "tor-talk" <tor-talk-bounces@lists.torproject.org>

Similar from me :

torsocks ab -c 10 -n 10000 http://eujuuws2nacz4xw4.onion/

Tom


Ben schreef op 05/07/15 om 10:02:
> Much the same, but with some stats (some of which are likely irrelevant,
> but I poached the line from another script I use)
>
>
> #!/bin/bash
>
> torify curl -w
> "%{http_code},\"$HOST\",\"$URL\",\"%{url_effective}\",%{time_total},%{time_namelookup},%{time_connect},%{time_redirect},%{time_starttransfer},%{size_download},%{size_request},%{num_redirects}\\n" -o /dev/null http://eujuuws2nacz4xw4.onion/ >> metrics 2> /dev/null
>
> Running in a while loop that triggers 4 requests at a time. Only got as
> far as setting running on one host
>
>
>
> Sharif Olorin <sio@tesser.org> wrote:
>> Hi s7r,
>>
>>> I know there are people who built scripts to make automated requests
>>> to this hidden service (thanks!): please share them on the mail list,
>>> with as much details as you can. The more we know about how the
>>> requests were made, the better we can make out of these numbers.
>>
>> Dead-simple for my part:
>>
>> ```
>> cat >> ~/bin/stresstest.sh <<EOF
>> #! /bin/bash
>>
>> curl -s --socks5-hostname localhost:9050 http://eujuuws2nacz4xw4.onion/
>>> /dev/null
>> EOF
>> chmod +x ~/bin/stresstest.sh
>> ```
>>
>> I then ran twelve instances of the above script in
>> parallel (continuously in a `for ((;;))` loop) (four per host, three
>> hosts each with their own Tor instance). This was done for just over 72
>> hours from Jul 2 04:00 UTC. I'd meant to add some simple
>> metrics-gathering/reporting of request time and the like (or maybe just
>> Torify something like `siege`) but ultimately didn't get a chance.
>>
>> Sharif
>>

-- 
tor-talk mailing list - tor-talk@lists.torproject.org
To unsubscribe or change other settings go to
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk

