CHips L MINI SHELL

CHips L pro

Current Path : /proc/2/root/usr/local/ssl/local/rvglobalsoft/rvsitebuilder7/lib/RVL/
Upload File :
Current File : //proc/2/root/usr/local/ssl/local/rvglobalsoft/rvsitebuilder7/lib/RVL/Net.pm

#!/usr/bin/perl
package RVL::Net;
# WebSite:  http://www.rvglobalsoft.com
# Unauthorized copying is strictly forbidden and may result in severe legal action.
# Copyright (c) 2013 RV Global Soft Co.,Ltd. All rights reserved.
#
# =====YOU MUST KEEP THIS COPYRIGHTS NOTICE INTACT AND CAN NOT BE REMOVE =======
# Copyright (c) 2013 RV Global Soft Co.,Ltd. All rights reserved.
# This Agreement is a legal contract, which specifies the terms of the license
# and warranty limitation between you and RV Global Soft Co.,Ltd. and RV2Factor Product for RV Global Soft.
# You should carefully read the following terms and conditions before
# installing or using this software.  Unless you have a different license
# agreement obtained from RV Global Soft Co.,Ltd., installation or use of this software
# indicates your acceptance of the license and warranty limitation terms
# contained in this Agreement. If you do not agree to the terms of this
# Agreement, promptly delete and destroy all copies of the Software.
#
# =====  Grant of License =======
# The Software may only be installed and used on a single host machine.
#
# =====  Disclaimer of Warranty =======
# THIS SOFTWARE AND ACCOMPANYING DOCUMENTATION ARE PROVIDED "AS IS" AND
# WITHOUT WARRANTIES AS TO PERFORMANCE OF MERCHANTABILITY OR ANY OTHER
# WARRANTIES WHETHER EXPRESSED OR IMPLIED.   BECAUSE OF THE VARIOUS HARDWARE
# AND SOFTWARE ENVIRONMENTS INTO WHICH RV SITE BUILDER MAY BE USED, NO WARRANTY OF
# FITNESS FOR A PARTICULAR PURPOSE IS OFFERED.  THE USER MUST ASSUME THE
# ENTIRE RISK OF USING THIS PROGRAM.  ANY LIABILITY OF RV GLOBAL SOFT CO.,LTD. WILL BE
# LIMITED EXCLUSIVELY TO PRODUCT REPLACEMENT OR REFUND OF PURCHASE PRICE.
# IN NO CASE SHALL RV GLOBAL SOFT CO.,LTD. BE LIABLE FOR ANY INCIDENTAL, SPECIAL OR
# CONSEQUENTIAL DAMAGES OR LOSS, INCLUDING, WITHOUT LIMITATION, LOST PROFITS
# OR THE INABILITY TO USE EQUIPMENT OR ACCESS DATA, WHETHER SUCH DAMAGES ARE
# BASED UPON A BREACH OF EXPRESS OR IMPLIED WARRANTIES, BREACH OF CONTRACT,
# NEGLIGENCE, STRICT TORT, OR ANY OTHER LEGAL THEORY. THIS IS TRUE EVEN IF
# RV GLOBAL SOFT CO.,LTD. IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO CASE WILL
# RV GLOBAL SOFT CO.,LTD.'S LIABILITY EXCEED THE AMOUNT OF THE LICENSE FEE ACTUALLY PAID
# BY LICENSEE TO RV GLOBAL SOFT CO.,LTD.
# ===============================

use strict;
use warnings;
use LWP::UserAgent;
use Class::Std::Utils;
{
    sub getContentByUrl {
    	$ENV{'PERL_LWP_SSL_VERIFY_HOSTNAME'} = 0;
    	my ($url) = shift;
    	my ($obj) = LWP::UserAgent->new;
    	$obj->agent('Perl - Get Content');
        $obj->timeout(10);
        $obj->env_proxy;
        
        my ($response) = $obj->get($url);
        return ($response->is_success) ? $response->decoded_content : $response->status_line;
    }
    
    sub isProtocol {
    	my ($url) = shift;
    	return ($url =~ /^(?:(http(?:s?)|ftp)(?:\:\/\/))/) ? 1 : 0;
    }
    
    
}
1;

=pod

=head1 RVL::Net

RVL Lib Net.

=head1 HOW IT WORKS

=head2 getContentByUrl($url)
@param String $url - URL
@return String - Content
simple: getContentByUrl("http://rvskin.com");
status line
404 Not Found
400 URL missing
400 URL must be absolute
406 Not Acceptable

=head2 isGoogleSafeBrowsing($url, key)
@param String $url - URL
@param String $key - Key api google save browsing
@return Boolean - TRUE if url malware
                          - FALSE if url not malware
simple: isGoogleSafeBrowsing("http://www.americanbanker.org", "ABQIAAAACbhb2dHt9wOFc9WAZ449yhRA--uKSOcch_P986Df-E_rv9aJJw");
reference: http://code.google.com/intl/th-TH/apis/safebrowsing/key_signup.html

=head2 isProtocol($url)
@param String $url - URL
@return Boolean - TRUE if protocol
                          - FALSE if not protocol
simple: isProtocol("http://rvskin.com");
reference: http://regexlib.com/REDetails.aspx?regexp_id=628

=cut

Copyright 2K16 - 2K18 Indonesian Hacker Rulez