SoftBan
Here is the place to post images, videos and downloads of your current and upcoming applications that you are working on.
7 posts
Page 1 of 1
I came on to this idea today, and as I was bored write it soon after.
Did you ever make an application important enough to block users from it if they abuse it?
Well, you can now! with SoftBan.
This is a very easy DLL to use and since I'm still developing it, it will be free for a while! wahooo;
Here's an example of how to use it;
It will return either BANNED or NOT_BANNED as you can see in the example, on that value you can act and display messageboxes, terminate the application, limit access, etc.
Enjoy
Did you ever make an application important enough to block users from it if they abuse it?
Well, you can now! with SoftBan.
This is a very easy DLL to use and since I'm still developing it, it will be free for a while! wahooo;
Here's an example of how to use it;
Code: Select all
To get the USERS banned guid the first time(To e-mail to yourself to add it to the html file) use this;Imports SoftBan_Project
Public Class TestProject
Private Sub TestProject_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim CheckUserBan As New SoftBan
If CheckUserBan.BanCheck("http://test.com/banned_users.html") = "BANNED" Then
MsgBox("Your Banned from this application!")
Application.Exit
ElseIf CheckUserBan.BanCheck("http://test.com/banned_users.html") = "NOT_BANNED" Then
MsgBox("Your not Banned from this application!")
End Sub
End Class
Code: Select all
The library automatically gets the GUID, checks it against your HTML file and returns a value on which you can act.Dim userguid As String = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Cryptography", "MachineGuid", Nothing)
It will return either BANNED or NOT_BANNED as you can see in the example, on that value you can act and display messageboxes, terminate the application, limit access, etc.
Enjoy

hmm registry keys ? easy trackable with spybot... so, when they ignore it the reg key will not be made lol
and some applications will delete useless keys...
and some applications will delete useless keys...
A very interesting idea Insignia I look forward to seeing you complete this ;).
You dont have to just use registry you could also use an encrypted file and app settings as backups. Your average computer user wont be looking in the registry or anything like that anyway really.
Keep it up cooll;
You dont have to just use registry you could also use an encrypted file and app settings as backups. Your average computer user wont be looking in the registry or anything like that anyway really.
Keep it up cooll;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
hungryhounduk wrote:Hi LivengoodLivengood, what? :P
A great Concept
It will be very handy i am sure
Chris
At the others, This registry key isn't made by me and as such things like SpyBot can't really block/remove/ignore them, It's a key automatically created and renewed by the Windows Operating System.
so hows the progress on this?
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that 

7 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023