Skip to content

Instantly share code, notes, and snippets.

@phpcodertop
Created April 14, 2018 22:44
Show Gist options
  • Save phpcodertop/5f1decae769fda774be0ee7b78ae0944 to your computer and use it in GitHub Desktop.
Save phpcodertop/5f1decae769fda774be0ee7b78ae0944 to your computer and use it in GitHub Desktop.
install ipvtl trial and hack its trial
#!/bin/bash
echo "Downloading ipvtl Software \n"
cd /home
wget http://www.ipvideotrans.com/download/ipvtl_trial-x64.tar.xz
echo "Extracting ipvtl Software \n"
tar xf ipvtl_trial-x64.tar.xz
rm -r ipvtl_trial-x64.tar.xz
echo "Downloading Fake Time Software \n"
sudo apt install git -y
git clone https://github.com/wolfcw/libfaketime.git
cd /home/libfaketime
echo "Installing Fake Time Software \n"
sudo apt install gcc -y
make
make install
echo "Cracking ipvtl With FakeTime \n"
today=`date +'%y-%m-%d %H:%M:%S'`
echo "Today is $today"
faketime "$today" /home/ipvtl/ipvtl_16ch_trial
echo "Have A Nice Time, Job Completed"
@sky100100
Copy link

thank you

@ProTechEx
Copy link

It does still show 30 days remaining

@firecruz
Copy link

Line 9: Add "--no-check-certificate" at the end
line 27: apt install make

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment