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
Contributors
User avatar
Insignia
VIP-Member
VIP-Member
Posts: 238
Joined: Thu Feb 11, 2010 5:15 pm

SoftBan
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
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: SoftBan
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...
http://vagex.com/?ref=25000
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4392
Joined: Tue Aug 04, 2009 1:47 am

Re: SoftBan
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;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
hungryhounduk
VIP - Site Partner
VIP - Site Partner
Posts: 2870
Joined: Mon Jul 27, 2009 11:58 am

Re: SoftBan
hungryhounduk
Hi Livengood
A great Concept
It will be very handy i am sure :)

Chris
Image
User avatar
Insignia
VIP-Member
VIP-Member
Posts: 238
Joined: Thu Feb 11, 2010 5:15 pm

Re: SoftBan
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.
User avatar
hungryhounduk
VIP - Site Partner
VIP - Site Partner
Posts: 2870
Joined: Mon Jul 27, 2009 11:58 am

Re: SoftBan
hungryhounduk
Yeah sorry I got you mixed up :)

Great Concept Insignia

Chris
Image
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1892
Joined: Wed Dec 16, 2009 9:56 pm

Re: SoftBan
zachman61
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
Return to “Work in Progress”