Jump to content

Recommended Posts

Posted

With that u can make your own online license cheker for ur Autoit Application just make ur self an Ftp server with more backup servers and create a license file and u r ready to go

-u can even disable ur program by adding code to the license file

-u can check if ur program is running on the right machine or not bye adding lines to a sended file

-u can add one license to more than one application and disable all at the same time saying" This program is no longer licensed to work"

-SAY GOODBYE TO LICENSE CRACKING

TraySetState(4)
 $Local=@WindowsDir&"\LICENSEFILE"
 $RAS="ftp://USERNAME:PASSWORD@FTPSERVER.COM/LICENSEFILE"
 TraySetIcon("shell32.dll",135)
 ;____________________________________________
 ProgressOn("Ibrahim Ghorabah VPN", "Geting License  . . ", "0 %")
 InetGet($RAS, $Local, 1, 1)
 $size=InetGetSize ( $RAS )
 ;_______________________________________________
 While @InetGetActive
    $Percent=Int(@InetGetBytesRead*100/$size)
   TrayTip("Acquiring VPN IP address", "Information Received = %"& $Percent, 10, 16)
    
    ProgressSet( $Percent, $Percent & " %")
 Wend
 ;____________________________________________
 ProgressSet(100 , "Done", "Complete")
 sleep(1000)
 ProgressOff()
 $license=FileReadLine($Local,15)
 if $license<> "450D8FBA-AD25-11D0-98A8-0800361B1103" then
 msgbox(0,"license information","This is not your License !")
 ProcessClose("ibrahim.exe")
 Exit
 EndIf
 msgbox(0,"license information","Licensed User : Tarek"&@CR&"License No. "&$license)

 FileDelete($Local)
  • Moderators
Posted
:) What happens when they check the outbound net activity and get your username and password to your FTP? :)

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Posted

guess they never appear on the traffic or u can do it without having to login to ur server;after all it's just the inet get thing all u have to download is ur license file you wouldn't have to edit it from this application

Posted

As long as you license them individually, you are ok with this. I did something similar but use a combo of php pages, mysql database, and some assorted functions using an explorer object to read the return.

Posted

-SAY GOODBYE TO LICENSE CRACKING

1. Say goodbye to every client behind a proxy

2. As far as I know INetGet doesnt work with Vista

3. Network sniffing one time and voila everyone can make a mini server with the response of yours

4. Disasemble program and Jump the If

Why do you think companies invest Million $ in protections and still cracks are available 48 hours later...

Posted (edited)

he's just stating the obvious Ibrahim:

your proposed sollution could be good, the idea is good, but the execution is too simplistic..

you will need to begin by adressing the problems stated by JavaCupix..

if i remember well Valuater wrote something like this (X-protec) and it has WAY more options...

look into this first and see if you can help him, or if he's helping you..

Edited by lordofthestrings
Posted

You can delete posts.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...