CabConModding
Facebook
Twitter
youtube
Discord
Contact us
RSS
Menu
CabConModding
Home
New
Top
Premium
Rules
FAQ - Frequently Asked Questions
Games
Fornite
Call of Duty: Black Ops 3
Clash of Clans
Grand Theft Auto 5
Apex Legends
Assassin’s Creed Origins
Forums
Premium
Latest posts
What's new
Latest posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Log in
Register
What's new
Premium
Latest posts
Menu
Log in
Register
Navigation
Install the app
Install
More options
Dark Theme
Contact us
Close Menu
Forums
Tech Boards
Computer Programming
Releases
NETLock Free, Open-Source, Secure, and Feature rich Login System for C#
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="XeCrash" data-source="post: 28266" data-attributes="member: 39692"><p>NETLock is a Project that I've been working on for a couple month's now to bring a Free secure and open source way to allow users to create a login system for their C# application in a simple, easy, and very customizable way with lots of help from me or the knowledge you maybe already have!</p><p><a href="https://github.com/XeCrash/NETLock" target="_blank">GitHub - XeCrash/NETLock</a></p><p></p><p>==This Update (Current Version: 3.0)==</p><p>I Added a good bit this update <img src="/styles/default/xenforo/smilies.emoji/people/slight_smile.emoji.svg" class="smilie" loading="lazy" alt=":smile:" title="Smile :smile:" data-shortname=":smile:" /></p><p></p><p>In this update, I made two separate registration methods a free one which is the registration I have already demonstrated to you guys. Now I added a paid registration method that allows you to only register if they have a license that will be generated via the Admin Panel. This also means the Database file was updated to support these features as well as making it possible to see all licenses, redeemed licenses and who they were redeemed by as well as unredeemed licenses in a list view within the admin panel. You can also change the redeemed status and delete licenses from the DB! I also included an example application clearly marked "ExampleApplicationPaidRegistration" this will be the easiest way for you guys to figure out how to use Paid Registration which isn't much different than the regular registration. Hopefully, you guys enjoy this update I haven't had a lot of time to work on NETLock but I grinded this out tonight so feel free to leave feedback!</p><p></p><p></p><p>==Features==</p><p>- Tampering Detection for packet sniffing applications like but not limited to Wireshark, tcpdump, and Telerek's Fiddler</p><p>- Duplicate user check on registration</p><p>- Very Strong implementation of BCrypt hashing method with salts</p><p>- Admin Panel (Look at latest update log to find out more)</p><p>- Program authentication to database as a security measure before you can use any of the features in NETLock.</p><p>- Ban, Unban, and Delete Users.</p><p>- Ability to pick between Paid Registration that utilizes a licensing system via admin panel and the Free Registration which is the one I already demonstrated in the last video tutorial</p><p>- File Hash Checking (MD5)</p><p>- File Hash Calculator (MD5)</p><p>- Licensing</p><p>- Grab, Generate, Copy, and Delete Licenses from the DB</p><p>- Grab, Generate, Copy, and Delete tokens from the DB</p><p>- Organized code with easy to understand naming scheme!</p><p>- Very Easily Customizable!</p><p>- Easy to implement into application's new and already existing!</p><p></p><p></p><p>==Update Log Version 3.0==</p><p>- added</p><p> - MD5 Hash Calculator for use with InnerLock.cs</p><p> - Added better error checking and the ability to append the error message to a text field.</p><p> - Read Below for a brief description.</p><p></p><p>In this update, I made error messages able to be appended as text to messageboxs and other text related viewers through the property info accessible in LoginResponse, LogoutReponse, and RegisterReponse. Examples have been added to all example applications. Also, I added the ability to copy licenses from the License ListView. The file add-on in this update is an MD5 Hash calculator that will aid you in using InnerLock.cs to protect your applications integrity by comparing the "CurrentMD5" variable to a live calculated MD5 hash of NETLock.dll!</p><p></p><p>[SPOILER="Preview of the listView Grabbing users and their respective information"]</p><p><a href="https://gyazo.com/db8dc500e021d16308f9655b5aa2afca" target="_blank">Gyazo - db8dc500e021d16308f9655b5aa2afca.png</a></p><p><img src="https://i.gyazo.com/db8dc500e021d16308f9655b5aa2afca.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p>[/SPOILER]</p><p></p><p>[SPOILER="Example of passwords after being stored in Database"]</p><p><a href="https://gyazo.com/6b265ab119071a455b110e644a2391ba" target="_blank">Gyazo - 6b265ab119071a455b110e644a2391ba.png</a></p><p><img src="https://i.gyazo.com/6b265ab119071a455b110e644a2391ba.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p><p>[/SPOILER]</p><p></p><p></p><p></p><p>NOTE: I only provide the code, database file and example application it's up to you to get a server and get phpmyadmin running on it. This is all my own open source work. Remember to change the connection string to fit your needs. The connection string is located under "internal class ConnectionMethods" its called MySqlConnection conn = new MySqlConnection("This is what you edit to fit your needs"); Example in the spoiler below.</p><p></p><p>[SPOILER="Connection String Explained W/ Example"]Example: MySqlConnection conn = new MySqlConnection("Server=29.291.332.32; Uid=root; Pwd=; Database=7s;");</p><p>-Meaning of each identifier in the connection string-</p><p>Server: the IP address of your server that's running phpmyadmin</p><p>Uid: Username of the main account on phpmyadmin the default is "root"</p><p>Pwd: The password of the main account by default its usually isn't set to anything that's why I have it blank in the above example</p><p>Database: is the name of the database you'll be pulling and storing info to and from, I have it set to mass in the above example because that the name of the database I setup by default for the DLL NETLock to use.</p><p>[/SPOILER]</p><p></p><p><span style="font-size: 22px">Video Tutorial (Working with Version 2.3 Free Registration Only) (Paid registration tut coming soon)</span></p><p><span style="font-size: 22px">[MEDIA=youtube]ijB1n81K6aI[/MEDIA]</span></p></blockquote><p></p>
[QUOTE="XeCrash, post: 28266, member: 39692"] NETLock is a Project that I've been working on for a couple month's now to bring a Free secure and open source way to allow users to create a login system for their C# application in a simple, easy, and very customizable way with lots of help from me or the knowledge you maybe already have! [URL='https://github.com/XeCrash/NETLock']GitHub - XeCrash/NETLock[/URL] ==This Update (Current Version: 3.0)== I Added a good bit this update :smile: In this update, I made two separate registration methods a free one which is the registration I have already demonstrated to you guys. Now I added a paid registration method that allows you to only register if they have a license that will be generated via the Admin Panel. This also means the Database file was updated to support these features as well as making it possible to see all licenses, redeemed licenses and who they were redeemed by as well as unredeemed licenses in a list view within the admin panel. You can also change the redeemed status and delete licenses from the DB! I also included an example application clearly marked "ExampleApplicationPaidRegistration" this will be the easiest way for you guys to figure out how to use Paid Registration which isn't much different than the regular registration. Hopefully, you guys enjoy this update I haven't had a lot of time to work on NETLock but I grinded this out tonight so feel free to leave feedback! ==Features== - Tampering Detection for packet sniffing applications like but not limited to Wireshark, tcpdump, and Telerek's Fiddler - Duplicate user check on registration - Very Strong implementation of BCrypt hashing method with salts - Admin Panel (Look at latest update log to find out more) - Program authentication to database as a security measure before you can use any of the features in NETLock. - Ban, Unban, and Delete Users. - Ability to pick between Paid Registration that utilizes a licensing system via admin panel and the Free Registration which is the one I already demonstrated in the last video tutorial - File Hash Checking (MD5) - File Hash Calculator (MD5) - Licensing - Grab, Generate, Copy, and Delete Licenses from the DB - Grab, Generate, Copy, and Delete tokens from the DB - Organized code with easy to understand naming scheme! - Very Easily Customizable! - Easy to implement into application's new and already existing! ==Update Log Version 3.0== - added - MD5 Hash Calculator for use with InnerLock.cs - Added better error checking and the ability to append the error message to a text field. - Read Below for a brief description. In this update, I made error messages able to be appended as text to messageboxs and other text related viewers through the property info accessible in LoginResponse, LogoutReponse, and RegisterReponse. Examples have been added to all example applications. Also, I added the ability to copy licenses from the License ListView. The file add-on in this update is an MD5 Hash calculator that will aid you in using InnerLock.cs to protect your applications integrity by comparing the "CurrentMD5" variable to a live calculated MD5 hash of NETLock.dll! [SPOILER="Preview of the listView Grabbing users and their respective information"] [URL='https://gyazo.com/db8dc500e021d16308f9655b5aa2afca']Gyazo - db8dc500e021d16308f9655b5aa2afca.png[/URL] [IMG]https://i.gyazo.com/db8dc500e021d16308f9655b5aa2afca.png[/IMG] [/SPOILER] [SPOILER="Example of passwords after being stored in Database"] [URL='https://gyazo.com/6b265ab119071a455b110e644a2391ba']Gyazo - 6b265ab119071a455b110e644a2391ba.png[/URL] [IMG]https://i.gyazo.com/6b265ab119071a455b110e644a2391ba.png[/IMG] [/SPOILER] NOTE: I only provide the code, database file and example application it's up to you to get a server and get phpmyadmin running on it. This is all my own open source work. Remember to change the connection string to fit your needs. The connection string is located under "internal class ConnectionMethods" its called MySqlConnection conn = new MySqlConnection("This is what you edit to fit your needs"); Example in the spoiler below. [SPOILER="Connection String Explained W/ Example"]Example: MySqlConnection conn = new MySqlConnection("Server=29.291.332.32; Uid=root; Pwd=; Database=7s;"); -Meaning of each identifier in the connection string- Server: the IP address of your server that's running phpmyadmin Uid: Username of the main account on phpmyadmin the default is "root" Pwd: The password of the main account by default its usually isn't set to anything that's why I have it blank in the above example Database: is the name of the database you'll be pulling and storing info to and from, I have it set to mass in the above example because that the name of the database I setup by default for the DLL NETLock to use. [/SPOILER] [SIZE=6]Video Tutorial (Working with Version 2.3 Free Registration Only) (Paid registration tut coming soon) [MEDIA=youtube]ijB1n81K6aI[/MEDIA][/SIZE] [/QUOTE]
Verification
Post reply
Forums
Tech Boards
Computer Programming
Releases
NETLock Free, Open-Source, Secure, and Feature rich Login System for C#
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top