Skip to content

Instantly share code, notes, and snippets.

@lyarinet
Forked from phpcodertop/script.sh
Created May 23, 2019 09:22
Show Gist options
  • Save lyarinet/5d269b2f23003543fc577a1fb0daef68 to your computer and use it in GitHub Desktop.
Save lyarinet/5d269b2f23003543fc577a1fb0daef68 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment