- Joined
- Threads
- 3
- Posts
- 9
I have a program that came with a free trial for a few days and I'm trying to figure out how to make this trial endless. The program when first launched will prompt you for a license key which I have.
GET programwebpage,com/api/sign.php?unique=DesktopName%5CUsername-&serial=SerialNumber&hash=management HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,en-US;q=0.5,en;q=0.3
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: My useragent
Host: programwebpage,com
Connection: Keep-Alive
This is the first thing sent out the program is launched. It sends your Computer name, Windows username, and program serial-number. It will then verify the serial number than send this back to the program.
GET programwebpage/download/verification.txt HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,en-US;q=0.5,en;q=0.3
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: My useragent
Host: programwebpage,com
This downloads a text document from the programs website which has a code in it. The code is the same every time and once the code is received the program opens. My trial lasts for 2 more days so I was curious how I could fake the last process and have the program receive the verification,txt
Any help is greatly appreciated.
GET programwebpage,com/api/sign.php?unique=DesktopName%5CUsername-&serial=SerialNumber&hash=management HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,en-US;q=0.5,en;q=0.3
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: My useragent
Host: programwebpage,com
Connection: Keep-Alive
This is the first thing sent out the program is launched. It sends your Computer name, Windows username, and program serial-number. It will then verify the serial number than send this back to the program.
GET programwebpage/download/verification.txt HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,en-US;q=0.5,en;q=0.3
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: My useragent
Host: programwebpage,com
This downloads a text document from the programs website which has a code in it. The code is the same every time and once the code is received the program opens. My trial lasts for 2 more days so I was curious how I could fake the last process and have the program receive the verification,txt
Any help is greatly appreciated.