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.13
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 /
libweb-scraper-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
dave-trailer-HD.pl
644
B
-rwxr-xr-x
ebay-auction.pl
613
B
-rwxr-xr-x
extract-links.pl
295
B
-rwxr-xr-x
hatena-keyword.pl
642
B
-rwxr-xr-x
jp-playstation-store.pl
299
B
-rwxr-xr-x
rel-tag.pl
504
B
-rwxr-xr-x
scraper
2.55
KB
-rwxr-xr-x
twitter-friends.pl
467
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dave-trailer-HD.pl
#!/usr/bin/perl use strict; use warnings; use lib "lib"; use Web::Scraper; use URI; use YAML; # extract HD trailers from Dave's trailer page my $uri = URI->new("http://www.drfoster.f2s.com/"); my $s = scraper { process "td>ul>li", "trailers[]" => scraper { process_first "li>b", title => "TEXT"; process_first "ul>li>a[href]", url => '@href'; process "ul>li>ul>li>a", "movies[]" => sub { my $elem = shift; return { text => $elem->as_text, href => $elem->attr('href'), }; }; }; result "trailers"; }; warn Dump $s->scrape($uri);
Close