Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › Random Number Generator

Random Number Generator

Posts 1–6 of 6 · Page 1 of 1
Iam"iDude"
Iam"iDude"
Random Number Generator
i made a small program in vb6 that generates random numbers. tell me if it ever goes down to zero / if you can stand how long it takes =D

i will post a virus scan anyways but i am telling you right now its clean :-/
have fun =D
#1 · 18y ago
Iam"iDude"
Iam"iDude"
http://www.virustotal.com/resultado....793cf7f5fe2c1f
File RNG.exe received on 10.02.2007 04:17:14 (CET)
Current status: Loading ... queued waiting scanning finished NOT FOUND STOPPED
Result: 0/32 (0%)
Loading server information...
Your file is queued in position: ___.
Estimated start time is between ___ and ___ .
Do not close the window until scan is complete.
The scanner that was processing your file is stopped at this moment, we are going to wait a few seconds to try to recover your result.
If you are waiting for more than five minutes you have to resend your file.
Your file is being scanned by VirusTotal in this moment,
results will be shown as they're generated.
Compact Compact
Print results Print results
Your file has expired or does not exists.
Service is stopped in this moments, your file is waiting to be scanned (position: ) for an undefined time.

You can wait for web response (automatic reload) or type your email in the form below and click "request" so the system sends you a notification when the scan is finished.
Email:

Antivirus Version Last Update Result
AhnLab-V3 2007.10.2.0 2007.10.01 -
AntiVir 7.6.0.18 2007.10.01 -
Authentium 4.93.8 2007.10.02 -
Avast 4.7.1043.0 2007.10.01 -
AVG 7.5.0.488 2007.10.01 -
BitDefender 7.2 2007.10.02 -
CAT-QuickHeal 9.00 2007.10.01 -
ClamAV 0.91.2 2007.10.02 -
DrWeb 4.33 2007.10.01 -
eSafe 7.0.15.0 2007.10.01 -
eTrust-Vet 31.2.5178 2007.10.01 -
Ewido 4.0 2007.10.01 -
FileAdvisor 1 2007.10.02 -
Fortinet 3.11.0.0 2007.10.01 -
F-Prot 4.3.2.48 2007.10.01 -
F-Secure 6.70.13030.0 2007.10.02 -
Ikarus T3.1.1.12 2007.10.02 -
Kaspersky 7.0.0.125 2007.10.02 -
McAfee 5131 2007.10.01 -
Microsoft 1.2803 2007.10.02 -
NOD32v2 2563 2007.10.01 -
Norman 5.80.02 2007.10.01 -
Panda 9.0.0.4 2007.10.01 -
Prevx1 V2 2007.10.02 -
Rising 19.43.00.00 2007.10.01 -
Sophos 4.22.0 2007.10.02 -
Sunbelt 2.2.907.0 2007.10.02 -
Symantec 10 2007.10.02 -
TheHacker 6.2.6.075 2007.10.01 -
VBA32 3.12.2.4 2007.10.01 -
VirusBuster 4.3.26:9 2007.10.01 -
Webwasher-Gateway 6.0.1 2007.10.01 -
Additional information
File size: 20480 bytes
MD5: de5a7939537dcccc75b05ed7f8048ce5
SHA1: c3ee5d09e943c3a192b68c759985f7e44dded6ed
#2 · 18y ago
SY
Synns
I did the same thing , thinking i could make a gen but.. Is there a way to make sure the same to letters show up? infront
#3 · 18y ago
radnomguywfq3
radnomguywfq3
If you making a keygen is should not be 100% random numbers there is usally a pattern. Anoth thing. Gens that go in an order in witch getting every combonation is a really bad I idea to attempt in VB, I suggest you go on to C++ its not that hard, I think its like 4 lines of code(not including the "includes", "defines" and main sub.


And yes you can make it have two letters at the front.

return "AB" + randomGenratedNumber.ToString
#4 · edited 18y ago · 18y ago
Iam"iDude"
Iam"iDude"
Quote Originally Posted by jetamay View Post
If you making a keygen is should not be 100% random numbers there is usally a pattern. Anoth thing. Gens that go in an order in witch getting every combonation is a really bad I idea to attempt in VB, I suggest you go on to C++ its not that hard, I think its like 4 lines of code(not including the "includes", "defines" and main sub.


And yes you can make it have two letters at the front.

return "AB" + randomGenratedNumber.ToString

actually my code is like 5 lines.
i have a declare function that is a bit better then the 1 default in vb6
then all i had to do was put the code in the timer to make it generate the code. as far as i have seen there isnt a pattern just random numbers :-/ oh btw the max is 10k :P
#5 · 18y ago
radnomguywfq3
radnomguywfq3
...I mean if you were to do arranged Numbers that were all diffrent, like to find all Combonations of a 6 letters\numbers. And you wouldn't store all the values on the CPU would you? its a larg waste of time and space, you would save it into text file, then reopen or read the lines.
#6 · 18y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [TuT]Generate Random NumberBy Iamazn1 in Visual Basic Programming
    1Last post 16y ago
  • [Question]Random Number+Letter GeneratorBy Dreamer in Visual Basic Programming
    4Last post 16y ago
  • Generating Unique Random Numbers?By apandhi in C++/C Programming
    10Last post 16y ago
  • Random Integer GeneratorBy SpiderByte in C++/C Programming
    12Last post 20y ago
  • Random Integer GeneratorBy SpiderByte in Art & Graphic Design
    6Last post 20y ago

Tags for this Thread

None