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 : twitter-friends.pl
#!/usr/bin/perl use strict; use warnings; use lib "lib"; use URI; use Web::Scraper; my $nick = shift || "miyagawa"; my $uri = URI->new("http://twitter.com/$nick"); my $twitter = scraper { process 'a[rel=~"contact"]', 'friends[]' => scraper { process 'a', url => '@href', name => '@title'; process 'img', src => '@src'; }; result 'friends'; }; my $friends = $twitter->scrape($uri); use YAML; warn Dump $friends;
Close