Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:52:14Z http://stackoverflow.com/feeds/question/137340 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected 36 Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? _ande_turner_ 2008-09-26T01:57:39Z 2009-11-15T10:24:40Z <p>The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.</p> <p>This was the only suggestion which didn't depend on non-commodity-class hardware.</p> <p>Subsequently nobody would put their reputation on the line to argue definitively for or against it. </p> <p>Anyone care to make a stand for or against. If so, how about a mention as to a possible implementation?</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137352#137352 0 Answer by Mike F for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Mike F 2008-09-26T02:05:44Z 2008-09-26T02:23:40Z <p>Eh, I find that this kind of question leads into discussions about the meaning of 'truly random' pretty quickly.</p> <p>I think that measuring pings would yield decent-quality random bits, but at an insufficient rate to be of much use (unless you were willing to do some serious DDOSing).</p> <p>And I don't see that it would be any more random than measuring analogue/mechanical properties of the computer, or the behaviour of the meatbag operating it.</p> <p>(edit) On a practical note, this approach opens you up to the possibility of someone on your network manipulating your 'random' number generator.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137356#137356 0 Answer by Ólafur Waage for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Ólafur Waage 2008-09-26T02:06:46Z 2008-09-26T02:06:46Z <p>Though i cant definitively site for or against, this implementation has its issues.</p> <p>Where are these IP Addresses coming from, if they are randomly selected, what happens when they do not reply or are late in replying, does that mean the random number will be slower to appear.</p> <p>Also, even if you would make a visual graph of 100.000 results and calculated that there are no or few correlations between the numbers, does not mean it is truly random. As explained by <a href="http://www.random.org/analysis/dilbert.jpg" rel="nofollow">dilbert</a> :)</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137377#137377 2 Answer by Lamar for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Lamar 2008-09-26T02:15:07Z 2008-09-26T02:15:07Z <p>Part of a good random number generator is equal probabilities of all numbers as n -> infinity.</p> <p>So if you are planning to generate random bytes, then with sufficient data from a good rng, each byte should have an equal probability of being returned. Further, there should be no pattern or predictibiltiy (spikes in probability during certain time periods) of certain numbers being returned. </p> <p>I am not too sure with using ping what you would be measuring to get the random variable, is it response time? If so, you can be pretty sure that some response times, or ranges of response times, will be more frequent than others and hence would make a potentially insecure random number generator.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137379#137379 0 Answer by Rob Walker for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Rob Walker 2008-09-26T02:15:33Z 2008-09-26T02:15:33Z <p>It doesn't strike me as a good source of randomness. </p> <p>What metric would you use -- the obvious one is response time, but the range of values you can reasonably expect is small: a few tens of milliseconds to a few thousand. The response times themselves will follow a bell curve and not be randomly distributed across any interval (how would you choose the interval?) so you would have to try and select a few 'random' bits from the numbers. </p> <p>The LSB might give you a random bit stream, but you would have to consider clock granularity issues - maybe due to how interrupts work you would always get multiples of 2ms on some systems.</p> <p>There are probably much better 'interesting' ways of getting random bits -- maybe google for a random word, grab the first page and choose the Nth bit from the page.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137401#137401 1 Answer by Mark Cidade for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Mark Cidade 2008-09-26T02:27:03Z 2008-09-26T02:58:40Z <p>It's not as good as using atmospheric noise but it's still truly random since it depends on the characteristics of the network which is notorious for random non-repeatable behavior.</p> <p>See <a href="http://www.random.org/randomness/" rel="nofollow">Random.org</a> for more on randomness.</p> <p>Here's an attempt at an implementation:</p> <pre><code>@ips : list = getIpAddresses(); @rnd = PseudorandomNumberGenerator(0 to (ips.count - 1)); @getTrueRandomNumber() { ping(ips[rnd.nextNumber()]).averageTime } </code></pre> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137408#137408 9 Answer by DGentry for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? DGentry 2008-09-26T02:29:43Z 2008-09-26T02:29:43Z <p>I guess you could. A couple things to watch out for: <UL> <LI>Even if pinging random IP addresses, the first few hops (from you to the first real L3 router in the ISP network) will be the same for every packet. This puts a lower bound on the round trip time, even if you ping something in a datacenter in that first Point of Presence. So you have to be careful about normalizing the timing, there is a lower bound on the round trip.</LI> <LI>You'd also have to be careful about traffic shaping in the network. A typical leaky bucket implementation in a router releases N bytes every M microseconds, which effectively perturbs your timing into specific timeslots rather than a continuous range of times. So you might need to discard the low order bits of your timestamp.</LI> </UL></p> <p>However I would disagree with the premise that there are not good sources of entropy in commodity hardware. Many x86 chipsets for the last few years have included random number generators. The ones I am familiar with use relatively sensitive ADCs to measure temperature in two different locations on the die, and subtract them. The low order bits of this temperature differential can be shown (via Chi-squared analysis) to be strongly random. As you increase the processing load on the system the overall temperature goes up, but the differential between two areas of the die remains uncorrelated and unpredictable.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137426#137426 1 Answer by Jon Schneider for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Jon Schneider 2008-09-26T02:34:39Z 2008-09-26T02:34:39Z <p>The approach of <em>measuring something</em> to generate a random seed appears to be a pretty good one. The O'Reilly book <a href="http://books.google.com/books?id=t0IExLP-MPMC&amp;pg=PA524&amp;lpg=PA524" rel="nofollow">Practical Unix and Internet Security</a> gives a few similar additional methods of determining a random seed, such as asking the user to type a few keystrokes, and then measuring the time between keystrokes. (The book notes that this technique is used by PGP as a source of its randomness.)</p> <p>I wonder if <strong>the current temperature of a system's CPU</strong> (measured out to many decimal places) could be a viable component of a random seed. This approach would have the advantage of not needing to access the network (so the random generator wouldn't become unavailable when the network connection goes down). </p> <p>However, it's probably not likely that a CPU's internal sensor could accurately measure the CPU temperature out to enough decimal places to make the value truly viable as a random number seed; at least, not with "commodity-class hardware," as mentioned in the question!</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137444#137444 68 Answer by Steve Jessop for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Steve Jessop 2008-09-26T02:41:45Z 2008-09-26T13:48:12Z <p>I'll put my rep on the line (at least, 2 points of it per downvote).</p> <p>No.</p> <p>A malicious machine on your network could use ARP spoofing (or a number of other techniques) to intercept your pings and reply to them after certain periods. They would then not only know what your random numbers are, they would control them.</p> <p>Of course there's still the question of how deterministic your local network is, so it might not be as easy as all that in practice. But since you get no benefit from pinging random IPs on the internet, you might just as well draw entropy from ethernet traffic. </p> <p>Drawing entropy from devices attached to your machine is a well-studied principle, and the pros and cons of various kinds of devices and methods of measuring can be e.g. stolen from the implementation of /dev/random.</p> <p>[<strong>Edit</strong>: as a general principle, when working in the fundamentals of security (and the only practical needs for significant quantities of truly random data are security-related) you MUST assume that a fantastically well-resourced, determined attacker will do everything in their power to break your system.</p> <p>For practical security, you can assume that nobody wants your PGP key that badly, and settle for a trade-off of security against cost. But when inventing algorithms and techniques, you need to give them the strongest security guarantees that they could ever possibly face. Since I can believe that someone, somewhere, might want someone else's private key badly enough do build this bit of kit to defeat your proposal, I can't accept it as an advance over current best practice. AFAIK /dev/random follows fairly close to best practice for generating truly random data on a cheap home PC]</p> <p>[<strong>Another edit</strong>: it has suggested in comments that (1) it is true of any TRNG that the physical process could be influenced, and (2) that security concerns don't apply here anyway.</p> <p>The answer to (1) is that it's possible on any realistic hardware to do so much better than ping response times, and gather more entropy faster, that this proposal is a non-solution. In CS terms, obviously you can't generate random numbers on a deterministic machine, which is what provoked the question. But then in CS terms a machine with any external input stream is non-deterministic by definition, so if we're talking about ping then we aren't talking about deterministic machines. So it makes sense to look at the real inputs that real machines have, and consider them as sources of randomness. No matter what your machine, raw ping times are not high on the list of sources available, so they can be ruled out before worrying about good the better ones are. Assuming that a network is not subverted is a much bigger (and unnecessary) assumption than assuming that your own hardware is not subverted.</p> <p>The answer to (2) is philosophical. If you don't mind your random numbers having the property that they can be chosen at whim instead of by chance, then this proposal is OK. But that's not what I understand by the term 'random'. Just because something is inconsistent doesn't mean it's necessarily random.</p> <p>Finally, to address the implementation details of the proposal as requested: assuming you accept ping times as random, you still can't use the unprocessed ping times as RNG output. You don't know their probability distribution, and they certainly aren't uniformly distributed (which is normally what people want from an RNG). </p> <p>So, you need to decide how many bits of entropy per ping you are willing to rely on. Entropy is a precisely-defined mathematical property of a random variable which can reasonably be considered a measure of how 'random' it actually is. In practice, you find a lower bound you're happy with. Then hash together a number of inputs, and convert that into a number of bits of output less than or equal to the total relied-upon entropy of the inputs. 'Total' doesn't necessarily mean sum: if the inputs are statistically independent then it is the sum, but this is unlikely to be the case for pings, so part of your entropy estimate will be to account for correlation. The sophisticated big sister of this hashing operation is called an 'entropy collector', and all good OSes have one.</p> <p>If you're using the data to seed a PRNG, though, and the PRNG can use arbitrarily large seed input, then you don't have to hash because it will do that for you. You still have to estimate entropy if you want to know how 'random' your seed value was - you can use the best PRNG in the world, but its entropy is still limited by the entropy of the seed.]</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/137474#137474 17 Answer by pappes for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? pappes 2008-09-26T02:49:22Z 2008-09-26T02:49:22Z <p>Random numbers are too important to be left to chance.</p> <p>Or external influence/manipulation.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/153045#153045 0 Answer by Peter Wone for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Peter Wone 2008-09-30T13:36:48Z 2008-09-30T13:36:48Z <p>It seems to me that true randomness is ineffable - there is no way to know whether a sequence is random, since by definition it can contain <em>anything</em> no matter how improbable. Guaranteeing a particular distribution pattern <em>reduces</em> the randomness. The word "pattern" is a bit of a giveaway.</p> <pre><code> I MADE U A RANDOM NUMBER BUT I EATED IT </code></pre> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/170651#170651 18 Answer by Hamish Downer for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Hamish Downer 2008-10-04T17:06:40Z 2009-07-01T20:09:44Z <h2>Short answer</h2> <p>Using ping timing data by itself would not be truly random, but it can be used as a source of <a href="http://en.wikipedia.org/wiki/Information%5Fentropy" rel="nofollow">entropy</a> which can then be used to generate truly random data.</p> <h2>Longer version</h2> <h3>How random are ping times?</h3> <p>By itself, timing data from network operations (such as ping) would not be uniformly distributed. (And the idea of selecting random hosts is not practical - many will not respond at all, and the differences between hosts can be huge, with gaps between ranges of response time - think satellite connections).</p> <p>However, while the timing will not be well distributed, there will be some level of randomness in the data. Or to put it another way, a level of <a href="http://en.wikipedia.org/wiki/Information%5Fentropy" rel="nofollow">information entropy</a> is present. It is a fine idea to feed the timing data into a random number generator to seed it. So what level of entropy is present?</p> <p>For network timing data of say around 50ms, measured to the nearest 0.1ms, with a spread of values of 2ms, you have about 20 values. Rounding down to the nearest power of 2 (16 = 2^4) you have 4 bits of entropy per timing value. If it is for any kind of secure application (such as generating cryptographic keys) then I would be conservative and say it was only 2 or 3 bits of entropy per reading. <em>(Note that I've done a very rough estimate here, and ignored the possibility of attack).</em></p> <h3>How to generate truly random data</h3> <p>For true random numbers, you need to send the data into something designed along the lines of <a href="http://en.wikipedia.org/wiki//dev/random" rel="nofollow">/dev/random</a> that will collect the entropy, distributing it within a data store (using some kind of <a href="http://en.wikipedia.org/wiki/Hash%5Ffunction" rel="nofollow">hash function</a>, usually a <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">secure one</a>). At the same time the entropy estimate is increased. So for a 128 bit AES key, 64 ping timings would be required before the entropy pool had enough entropy. </p> <p>To be more robust, you could then add timing data from keyboard and mouse usage, hard disk response times, motherboard sensor data (eg temperature) etc. It increases the rate of entropy collection, and makes it hard for an attacker to monitor all sources of entropy. And indeed this is what is done with modern systems. The full list of MS Windows entropy sources is listed in the <a href="http://blogs.msdn.com/michael%5Fhoward/archive/2005/01/14/353379.aspx#353493" rel="nofollow">second comment of this post</a>.</p> <h3>More reading</h3> <p>For discussion of the (computer security) attacks on random number generators, and the design of a cryptographically secure random number generator, you could do worse than read the <a href="http://www.schneier.com/yarrow.html" rel="nofollow">yarrow paper</a> by <a href="http://www.schneier.com/index.html" rel="nofollow">Bruce Schneier</a> and John Kelsey. (Yarrow is used by BSD and Mac OS X systems).</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/537512#537512 7 Answer by knodi for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? knodi 2009-02-11T16:10:03Z 2009-03-07T05:31:29Z <p>The best source of randomness on commodity hardware I've seen, was a guy who removed a filter or something from his webcam, put opaque glue on the lens, and was then able to easily detect individual white pixels from cosmic rays striking the CCD. These are as close to perfectly random as possible, and are protected from external snooping by quantum effects.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/613813#613813 0 Answer by _ande_turner_ for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? _ande_turner_ 2009-03-05T06:53:54Z 2009-03-11T11:30:17Z <p>Cleared for Deletion</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/613876#613876 1 Answer by tinkertim for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? tinkertim 2009-03-05T07:28:28Z 2009-03-05T07:28:28Z <p>I would sooner use something like <a href="http://burtleburtle.net/bob/rand/isaacafa.html" rel="nofollow">ISAAC</a> as a stronger PRNG before trusting round trip pings as entropy. As others have said, it would just be too easy for someone to not only guess your numbers, but also possibly control them to various degrees.</p> <p>Other great sources of entropy exist, which others have mentioned. One that was not mentioned (which might not be practical) is sampling noise from the on board audio device.. which is usually going to be a little noisy even if no microphone is connected to it.</p> <p>I went 9 rounds with trying to come up with a strong (and fast) PRNG for a client/server RPC mechanism I was writing. Both sides had an identical key, consisting of 1024 lines of 32 character ciphers. The client would send AUTH xx, the server would return AUTH yy .. and both sides knew which two lines of the key to use to produce the blowfish secret (+ salt). Server would then send a SHA-256 digest of the entire key (encrypted), client knew it was talking to something that had the correct key .. session continued. Yeah, very weak protection for man in the middle, but a public key was out of the question for how the device was being used.</p> <p>So, you had a non blocking server that had to handle up to 256 connections .. not only did the PRNG have to be strong, it had to be fast. It wasn't such a hardship to use slower methods to gather entropy in the client, but that could not be afforded in the server.</p> <p>So, I have to ask regarding your idea .. how practical would it be? </p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/621390#621390 0 Answer by Pies for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Pies 2009-03-07T05:47:46Z 2009-03-07T06:24:39Z <p>Randomness is not a binary property -- it's a value between 0 and 1 that describes how difficult it is to predict the next value in a stream.</p> <p>Asking "how random can my values be if I base them on pings?" is actually asking "how random are pings?". You can estimate that by gathering a large enough set of data (1 mln pings for example) and mapping their distribution curve and behavior in time. If the distribution is flat and the behavior is difficult to predict, the data seems more random. The more bumpy distribution or predictable behavior suggest lower randomness.</p> <p>You should also consider the sample resolution. I could imagine the results being rounded in some way to a milisecond, so with pings you could have integer values between 0 and 500. That's not a lot of resolution.</p> <p>On the practical side, I would recommend against it, since pings can be predicted and manipulated, further reducing their randomness.</p> <p>Generally, I suggest against "rolling your own" randomness generators, encryption methods and hashing algorithms. As fun as it seems, it's mostly a lot of very intimidating math.</p> <p>As to how to build a really good entropy generator -- I think that's probably going to have to be a sealed box that outputs some sort of result of interactions on atomic or sub-atomic level. I mean, if you're using a source of entropy that the enemy can easily read too, he only needs to find out your algorythm. Any form of connection is a possible attack vector, so you should place the source of entropy as close to the service that consumes it as possible.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/625038#625038 7 Answer by dbr for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? dbr 2009-03-09T04:41:47Z 2009-03-09T04:41:47Z <p>No.</p> <p>Unplug the network cable (or <code>/etc/init.d/networking stop</code>) and the entropy basically drops to zero.</p> <p>Perform a Denial-Of-Service attack on the machine it's pinging and you also get predictable results (the ping-timeout value)</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/625116#625116 1 Answer by Einstein for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Einstein 2009-03-09T05:28:14Z 2009-03-09T06:15:50Z <p>No mathmatical computation can produce a random result but in the "real world" computers don't exactly just crunch numbers... With a little bit of creativity it should be possible to produce random results of the kind where there is no known method of reproducing or predicting exact outcomes.</p> <p>One of the easiest to implement ideas I've seen which works universally on all systems is to use static from the computers sound card line in/mic port.</p> <p>Other ideas include thermal noise and low level timing of cache lines. Many modern PCs with TPM chips have encryption quality hardware random number generators already onboard.</p> <p>My kneejerk reaction to ping (esp if using ICMP) is that your cheating too blatently. At that point you might as well whip out a giger counter and use background radiation as your random source.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/627085#627085 0 Answer by Thelema for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Thelema 2009-03-09T16:55:33Z 2009-03-09T16:55:33Z <p>Yes, it's possible, but... the devil's in the details.</p> <p>If you're going to generate a 32-bit integer, you need to gather >32 bits of entropy (and use a sufficient mixing function to get that entropy spread around, but that's known and doable). The big question that is:</p> <p><strong>how much entropy do ping times have?</strong></p> <p>The answer to this question depends on all sorts of assumptions about the network and your attack model, and there's different answers in different circumstances. </p> <p>If attackers are able to totally control ping times, you get 0 bits of entropy per ping, and you can't ever total 32-bits of entropy, no matter how much you mix. If they have less than perfect control over ping times, you'll get some entropy, and (if you don't overestimate the amount of entropy you're gathering) will get perfectly random 32-bit numbers.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/727830#727830 0 Answer by kenj0418 for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? kenj0418 2009-04-07T22:21:57Z 2009-04-07T22:21:57Z <p>You can use the XKCD method:</p> <p><img src="http://imgs.xkcd.com/comics/random%5Fnumber.png" alt="Random Number Generator" /></p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/1218649#1218649 0 Answer by Patrick L. for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Patrick L. 2009-08-02T10:49:55Z 2009-08-02T10:49:55Z <p>I got some code that creates random numbers with traceroute. I also have a program that does it using ping. I did it over a year ago for a class project. All it does is run traceroute on and address and it takes the least sig digit of the ms times. It works pretty well at getting random numbers but I really don't know how close it is to true random.</p> <p>Here is a list of 8 numbers that I got when I ran it. </p> <blockquote> <p>455298558263758292242406192</p> <p>506117668905625112192115962</p> <p>805206848215780261837105742</p> <p>095116658289968138760389050</p> <p>465024754117025737211084163</p> <p>995116659108459780006127281</p> <p>814216734206691405380713492</p> <p>124216749135482109975241865</p> </blockquote> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; #include &lt;stdio.h&gt; #include &lt;cstdio&gt; #include &lt;stdlib.h&gt; #include &lt;vector&gt; #include &lt;fstream&gt; using namespace std; int main() { system("traceroute -w 5 www.google.com &gt;&gt; trace.txt"); string fname = "trace.txt"; ifstream in; string temp; vector&lt;string&gt; tracer; vector&lt;string&gt; numbers; in.open(fname.c_str()); while(in&gt;&gt;temp) tracer.push_back(temp); system("rm trace.txt"); unsigned index = 0; string a = "ms"; while(index&lt;tracer.size()) { if(tracer[index]== a) numbers.push_back(tracer[index-1]); ++index; } std::string rand; for(unsigned i = 0 ; i &lt; numbers.size() ; ++i) { std::string temp = numbers[i]; int index = temp.size(); rand += temp[index - 1]; } cout&lt;&lt;rand&lt;&lt;endl; return 0; } </code></pre> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/1737161#1737161 0 Answer by Lee B for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Lee B 2009-11-15T10:15:05Z 2009-11-15T10:15:05Z <p>Very simply, since networks obey prescribed rules, the results are not random.</p> <p>The webcam idea sounds (slightly) reasonable. Linux people often recommend simply using the random noise from a soundcard which has no mic attached.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/1737184#1737184 0 Answer by Carl Smotricz for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Carl Smotricz 2009-11-15T10:24:40Z 2009-11-15T10:24:40Z <p>If you want commodity hardware, your sound card should pretty much do it. Just turn up the volume on an analog input and you have a cheap white noise source. Cheap randomness without the need for a network. </p>