Is it possible to know which number would random generate.
Or How does random work?
Is it possible to make my own random function ?
Forum Thread: How Random Works in Python
- Hot
- Active
-
Forum Thread: How to Track Who Is Sms Bombing Me . 4 Replies
1 mo ago -
Forum Thread: Removing Pay-as-You-Go Meter on Loan Phones. 1 Replies
1 mo ago -
Forum Thread: Hydra Syntax Issue Stops After 16 Attempts 3 Replies
2 mo ago -
Forum Thread: moab5.Sh Error While Running Metasploit 17 Replies
3 mo ago -
Forum Thread: Execute Reverse PHP Shell with Metasploit 1 Replies
4 mo ago -
Forum Thread: Install Metasploit Framework in Termux No Root Needed M-Wiz Tool 1 Replies
5 mo ago -
Forum Thread: Hack and Track People's Device Constantly Using TRAPE 35 Replies
5 mo ago -
Forum Thread: When My Kali Linux Finishes Installing (It Is Ready to Boot), and When I Try to Boot It All I Get Is a Black Screen. 8 Replies
6 mo ago -
Forum Thread: HACK ANDROID with KALI USING PORT FORWARDING(portmap.io) 12 Replies
6 mo ago -
Forum Thread: Hack Instagram Account Using BruteForce 208 Replies
7 mo ago -
Forum Thread: Metasploit reverse_tcp Handler Problem 47 Replies
9 mo ago -
Forum Thread: How to Train to Be an IT Security Professional (Ethical Hacker) 22 Replies
9 mo ago -
Metasploit Error: Handler Failed to Bind 41 Replies
9 mo ago -
Forum Thread: How to Hack Android Phone Using Same Wifi 21 Replies
9 mo ago -
How to: HACK Android Device with TermuX on Android | Part #1 - Over the Internet [Ultimate Guide] 177 Replies
9 mo ago -
How to: Crack Instagram Passwords Using Instainsane 36 Replies
9 mo ago -
Forum Thread: How to Hack an Android Device Remotely, to Gain Acces to Gmail, Facebook, Twitter and More 5 Replies
10 mo ago -
Forum Thread: How Many Hackers Have Played Watch_Dogs Game Before? 13 Replies
10 mo ago -
Forum Thread: How to Hack an Android Device with Only a Ip Adress 55 Replies
11 mo ago -
How to: Sign the APK File with Embedded Payload (The Ultimate Guide) 10 Replies
11 mo ago
-
How To: Find Vulnerable Webcams Across the Globe Using Shodan
-
How To: Use Burp & FoxyProxy to Easily Switch Between Proxy Settings
-
How To: Buy the Best Wireless Network Adapter for Wi-Fi Hacking in 2019
-
How To: The Top 80+ Websites Available in the Tor Network
-
How To: Hack Wi-Fi & Networks More Easily with Lazy Script
-
How To: Hack Networks & Devices Right from Your Wrist with the Wi-Fi Deauther Watch
-
How To: Find Identifying Information from a Phone Number Using OSINT Tools
-
How To: Enumerate SMB with Enum4linux & Smbclient
-
Tutorial: DNS Spoofing
-
How To: Exploit EternalBlue on Windows Server with Metasploit
-
How To: Perform Advanced Man-in-the-Middle Attacks with Xerosploit
-
How To: Hunt Down Social Media Accounts by Usernames with Sherlock
-
How To: Intercept Images from a Security Camera Using Wireshark
-
How To: Create Rainbow Tables for Hashing Algorithms Like MD5, SHA1 & NTLM
-
How To: Phish for Social Media & Other Account Passwords with BlackEye
-
How To: Scan, Fake & Attack Wi-Fi Networks with the ESP8266-Based WiFi Deauther
-
How To: Track Wi-Fi Devices & Connect to Them Using Probequest
-
How To: Pick an Antenna for Wi-Fi Hacking
-
How To: Crack Wi-Fi Passwords—For Beginners!
-
How To: Bypass File Upload Restrictions on Web Apps to Get a Shell
1 Response
AFAIK, the random function in languages are psuedo-random, which means they only seem to be random but are not entirely since they have a set mathematical equation to produce the result. Because of this, using the default random generator functions can cause issues in situations where security is required because mathematics is predictable, you will always get the same answer for every given scenario.
In cases where you would want to create true (or near-true) randomness, usually sources (yes, sometimes more than one) with high entropy are gathered and combined for greater effectiveness. Where might you find these sources? Normally, they are generated from physical phenomena such as the speed of the CPU fan or the air turbulence from disk drives*. Mouse movement and keyboard presses may also be sourced but don't usually produce as good an outcome.
*Wikipedia article on Entropy (Computing)
Share Your Thoughts