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]User Overview

Talking[Beta]User Overview

Posts 1–13 of 13 · Page 1 of 1
Blubb1337
Blubb1337
[Beta]User Overview
Hello MPGH.

~ Information ~

I created a system within VB.Net and PHP to see how many people are using/used your program.

This allows you to see how many people

- Use your program
- Used your program in the past year/month/day/minute

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 ~
  • Users.dll(library to easily access everything)
  • advanced log.php
  • curusers.php
  • install.php
  • login.php
  • logout.php


~ 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

[php] 'DO NOT USE HTTP OR WWW INFRONT OF THE LINK!!!
Private User As New Users.AppUsers("localhost/users/") 'all php scripts are located in here

Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
User.Logout()
End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
User.Login()
End Sub

Private Function Users()
Return User.CurrentUsers
End Function

Private Sub cmdLog_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLog.Click
'you gotta split it with "|"
For Each AppUser As String In User.GetAllUsers
Dim use() As String = AppUser.Split("|")
For i = 0 To use.Length - 1
MsgBox(use(i)) 'you can add them into a listbox or whatever
Next
Next
End Sub[/php]

~ Function Overview ~



~ Database Overview ~

CurUsers - This table is only to see how many people are currently using your program, if your program is closed, the user will be removed from the table

  • ID[INT] - Auto Increment - Primary Key
  • PCName[VARCHAR(30)]
  • IP[VARCHAR(20)]
  • GUID[VARCHAR(50)]


Log - This table keeps an advanced track of the user login/logouts.
  • ID[INT] - Auto Increment - Primary Key
  • Login[INT(2)]
  • PCName[VARCHAR(30)]
  • OS[VARCHAR(10)]
  • Processor[INT(2)]
  • IP[VARCHAR(20)]
  • GUID[VARCHAR(50)]
  • Date[VARCHAR(12)]
  • Time[VARCHAR(5)]


~ Requirements ~

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


~ License ~

You may merge it into your program but only with credits.

If you have any further ideas on what can be added into this system, please let me know.

All rights reserved to me.

~ Virusscans ~
VirusTotal
Jotti

PS: If you guys like this, I may add a couple of more functions + some proper style for the installation =D

We'll see

Enjoy this
#1 · 15y ago
House
House
I am proud of you my boy
#2 · 15y ago
master131
[MPGH]master131
You are teh epic Kevin. No wonder you were working so hard yesterday night.
#3 · 15y ago
Jason
Jason
Fake and gay

Just kidding, looks fucking epic Kevin. My little boy is growing up
#4 · 15y ago
Hassan
Hassan
Credits or GTFO !!

Great Job Son =)
#5 · 15y ago
Blubb1337
Blubb1337
Any ideas on what to add? I'd like to make this more advanced.
#6 · 15y ago
CptnDutch
CptnDutch
Great job on making this

When i know more of vb.net and sql i'll try to use it and maybe give a idea on what you could add (if that is what you ask and want btw )

gj mate
#7 · edited 15y ago · 15y ago
Blubb1337
Blubb1337
Yep, that is what I want, ideas =D.
#8 · 15y ago
CH
Chairman Mao
Awesome program Blubb. Maybe next time you could make it part automated for installation - Let's say - An installation program to move the files via FTP and then edit the database settings in the appropriate php file(s).
#9 · 15y ago
Blubb1337
Blubb1337
Well, you only have to upload the .php files on your ftp with a ftp client of your choice (I prefer Filezilla over a custom one) and launch the install.php. Fill in 4 fields and the installation is done.
#10 · 15y ago
Blubb1337
Blubb1337
Bump to say that I'm going to involve an optional ban system using HWID.

Any ideas for it?

You will be able to do it like this in vb.net.

[php]if user.isbanned then
msgbox(user.banreason)
end
end if[/php]
#11 · 15y ago
BB
bbhing987
good job blubb!
keep it up and free bump for you!
#12 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
soooooooooooooooooooooooooo fucking epic!!!!!!! FUCK! GJ!
#13 · 15y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Tags for this Thread

#awesomeness#epicness#overview#user