AltF4
AltF4
Right now the Rickmote only has support for playing YouTube videos from the real Internet YouTube. That means you have to tether an Internet connection from your phone, or connect...
Right now, the Rickmote de-auths every Wi-Fi network it sees. And it keeps de-auth'ing over and over. This was made so that we could be sure the attack would work....
Right now the Rickmote needs 3 separate hardware NICs: 1) A monitor mode NIC with injection support. This is needed to de-auth wireless networks. 2) A client NIC to connect...
https://github.com/altf4/libmelee/blob/master/melee/framedata.py#L533
Should be easy, actually. Reference: http://franklinta.com/2014/08/31/predicting-the-next-math-random-in-java/
State tracking and thread dependency in the Untwister class is a bit messy. It needs some cleaning. There are three states Untwister can be in: starting, running, or finished. Importantly,...
Our current confidence ratings are pretty useless. What we REALLY want to output is the percentage chance that the hit we have observed is a true positive. There are three...
PHP apps that implicitly seed their mt_rand do so according to the algorithm here: http://lxr.php.net/xref/PHP_5_4/ext/standard/php_rand.h#46 ``` #define GENERATE_SEED() (((long) (time(0) * getpid())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C)))) ``` There's not...
This would be a super cool feature. Never done OpenCL programming before, though, so it would be a learning experience. :)
At first, I didn't think this was going to be possible, but it actually will be in many cases. Turns out that different PRNGs produce numbers with distinctive features. Notably...