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 › [BETA][Release] Serial System

[BETA][Release] Serial System

Posts 1–9 of 9 · Page 1 of 1
Blubb1337
Blubb1337
[BETA][Release] Serial System
This is a release brought to you by the Official MPGH Programing Development & Design Team
Coded by: Kevin(Blubb1337)

~ Information ~

I created a system within VB.Net and PHP to easily manage a serial.

Important: THIS SYSTEM DOES WORK WITH DATABASES THAT DO NOT ALLOW EXTERNAL ACCESS!!!

You can therefore use any free database in the ********* rather than paying for one that allows external access.
The whole system works locally, so it does not require any external access.

It is very easy to setup and use.

~ Files ~
  • Serials.dll(library to easily access everything)
  • activate.php
  • insert.php
  • install.php
  • login.php
  • activate.php
  • Full dll project


From now on, my system will contain configs.

[highlight="cpp"]<?php
//this is the config file
//feel free to edit the following variables

#~~~~~~~~~~~~~~~~~~~~~
#[General Information]
#~~~~~~~~~~~~~~~~~~~~~

//0 = False/No
//1 = True/Yes

//Table "serials"
/*
ID
Serial
TimesUsed
HWID
*/

#~~~~~~~~~
#[Credits]
#~~~~~~~~~

/*
This system has been brought to you by the OFFICIAL MPGH DEVELOPER TEAM
Coded by Blubb1337
*/

#~~~~~~~~~~~~~~~~~~
#[GENERAL SETTINGS]
#~~~~~~~~~~~~~~~~~~

//enter the amount of users per serial
//if you set it to one, the serial will be "blocked" after being entered
$UserPerSerial = 1;

//this will allow the user that activated the serial to use the serial again
//i recommend setting this to 1(yes) since the user may lose his key
$AllowReusing = 1;

//this is the number of serials that'll be added to the database when executing insert.php
$NumberOfSerials = 100;

#~~~~~~~~~~~~~~~~~
#[SERIAL SETTINGS]
#~~~~~~~~~~~~~~~~~

//set the length of the serial
$SerialLength = 16;

//set the subkey length
//the length should be devideable by the subkeylength
$SubKeyLength = 4;

//delimiter for subkey
//set subkeylength to zero if you don't want a delimiter
$SubKeyDelimiter = "-";

//example resusult of serial with the above settings:
//AKR4-RQ34-42IP

/ may also set all allowed characters rather than setting the things above
$AllowedCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";

#~~~~~
#[FAQ]
#~~~~~

/*
Q: I'm getting some weird error on installation that I cannot edit the conn.php.
A: Open up the conn.php, edit the host,username and password. Save it and you're done.

Q: I'm getting "Notice: Uninitialized string offset: [...]" when trying to insert new serials.
A: Just do not mind it, if the last line says "Sucessfully inserted serials." everything is fine.
*/
?>[/highlight]

~ Setup ~

1. Upload all .php files to your website using any ftp client(f.e. Filezilla) or your CPanel.

2. Browse the install.php in your webbrowser www.websitelink.com/install.php

Set your information like this:



If you are done, simply hit "Save"(obvious). If no error appears, everything is fine

The whole database stuff is already done, awesome eh?

~ Library Usage ~

1. Add the library as reference



2. Code sample

[highlight="vb"]Public Class frmMain

Private serial As New SerialSystem("http://localhost/serial")

Private Sub cmdRegister_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRegister.Click
If serial.activate(Textbox1.text) Then
Activated()
Else
MsgBox("Invalid serial.")
End If
End Sub

End Class
[/highlight]

~ Function Overview ~



~ Database Overview ~

serials - This table contains all serials

  • ID[INT(11)] - Auto Increment - Primary Key
  • Serial[VARCHAR(30)]
  • TimesUsed[INT(3)]
  • HWID[VARCHAR(100)]


~ Requirements ~

  • .Net Framework 2.0
  • A MySQL database
  • A Brain


~ Virusscans ~
VirusTotal
Jotti


Enjoy this


3am I can finally go 2 sleep
#1 · 15y ago
SU
SubCub
Nice bud. Hope to see more.
#2 · 15y ago
LY
Lyoto Machida
I have no brain..So i dont know for what is this XD
Nice job doing idk what
#3 · 15y ago
Insane²
Insane²
#4 · 15y ago
cgallagher21
cgallagher21
Nice keep up the good work!
#5 · 15y ago
Jason
Jason
Looks great Kevin, didn't even know you were working on it you tricky bastard!

EDIT: Everything checks out, I like your code too Kevin .

/Approved.
#6 · edited 15y ago · 15y ago
Hassan
Hassan
@Blubb1337 --- Very Good Job.
#7 · 15y ago
Blubb1337
Blubb1337
Quote Originally Posted by Jason View Post
Looks great Kevin, didn't even know you were working on it you tricky bastard!

EDIT: Everything checks out, I like your code too Kevin .

/Approved.
I started at like 1am this night.
#8 · 15y ago
Jason
Jason
Quote Originally Posted by Blubb1337 View Post
I started at like 1am this night.
1 Property, you've really outdone yourself this time /. Oh yeah I found an 'error' in your install.php. 2 closing <table> tags, only one opening. Mehz.

If you have time, get on msn please
#9 · 15y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Tags for this Thread

None