Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libimage-exif-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
create_web_gallery.pl.gz
3.25
KB
-rw-r--r--
rename.pl
722
B
-rwxr-xr-x
t.pl
223
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rename.pl
#!/usr/bin/perl -w # author : sergey s prozhogin (ccpro@rrelaxo.org.ru) # script renames file by EXIF date # for information start perl rename.pl # # v 1.3 May-20-2004 # use strict; use Image::EXIF; use Date::Parse; use Data::Dumper; my @list = `ls -1 *JPG *jpg *jpeg *JPEG`; my $exif = new Image::EXIF; for my $fname (@list) { chomp $fname; $exif->file_name($fname); my $data = $exif->get_all_info(); if ($data) { my $timestamp = $data->{image}->{'Image Created'} || $data->{other}->{'Image Generated'}; my $time = str2time($timestamp); $timestamp = sprintf "%x", $time; my $count = 0; while (-f "img_$timestamp$count.jpg") { $count ++; } rename $fname, "img_$timestamp$count.jpg"; } }
Close