Page 1 of 1

SoftBan

Posted: Wed Sep 15, 2010 7:22 pm
by Insignia
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;
Code: Select all
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
To get the USERS banned guid the first time(To e-mail to yourself to add it to the html file) use this;
Code: Select all
Dim userguid As String = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Cryptography", "MachineGuid", Nothing)
The library automatically gets the GUID, checks it against your HTML file and returns a value on which you can act.

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 :D
SoftBan_Sept15.zip

Re: SoftBan

Posted: Wed Sep 15, 2010 8:04 pm
by Axel
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...

Re: SoftBan

Posted: Wed Sep 15, 2010 10:14 pm
by CodenStuff
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;

Re: SoftBan

Posted: Thu Sep 16, 2010 6:32 am
by hungryhounduk
Hi Livengood
A great Concept
It will be very handy i am sure :)

Chris

Re: SoftBan

Posted: Thu Sep 16, 2010 1:39 pm
by Insignia
hungryhounduk wrote:
Hi Livengood
A great Concept
It will be very handy i am sure :)

Chris
Livengood, what? :P

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.

Re: SoftBan

Posted: Thu Sep 16, 2010 6:08 pm
by hungryhounduk
Yeah sorry I got you mixed up :)

Great Concept Insignia

Chris

Re: SoftBan

Posted: Thu Oct 07, 2010 2:23 am
by zachman61
so hows the progress on this?