simple什么意思 two

Copyright &Invalid Configuration – yii\base\InvalidConfigException
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Security.php
455456457458459460461462463464465466467468469470471472473
* @see generateRandomString() if you need a string.
* @param integer $length the number of bytes to generate
* @throws Exception on failure.
* @return string the generated random bytes
public function generateRandomKey($length = 32)
if (!extension_loaded('mcrypt')) {
throw new InvalidConfigException('The mcrypt PHP extension is not installed.');
$bytes = mcrypt_create_iv($length, MCRYPT_DEV_URANDOM);
if ($bytes === false) {
throw new Exception('Unable to generate random bytes.');
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Security.php
477478479480481482483484485486487488489
* @param integer $length the length of the key in characters
* @throws Exception Exception on failure.
* @return string the generated random key
public function generateRandomString($length = 32)
$bytes = $this-&generateRandomKey($length);
// '=' character(s) returned by base64_encode() are always discarded because
// they are guaranteed to be after position $length in the base64_encode() output.
return strtr(substr(base64_encode($bytes), 0, $length), '+/', '_-');
in /web/v2_eeworm/vendor/yiisoft/yii2/web/Request.php
1277127812791280128112821283128412851286128712881289
* Generates
an unmasked random token used to perform CSRF validation.
* @return string the random token for CSRF validation.
protected function generateCsrfToken()
$token = Yii::$app-&getSecurity()-&generateRandomString();
if ($this-&enableCsrfCookie) {
$config = $this-&csrfC
$config['name'] = $this-&csrfP
$config['value'] = $
Yii::$app-&getResponse()-&getCookies()-&add(new Cookie($config));
in /web/v2_eeworm/vendor/yiisoft/yii2/web/Request.php
1245124612471248124912501251125212531254125512561257
* @return string the token used to perform CSRF validation.
public function getCsrfToken($regenerate = false)
if ($this-&_csrfToken === null || $regenerate) {
if ($regenerate || ($token = $this-&loadCsrfToken()) === null) {
$token = $this-&generateCsrfToken();
// the mask doesn't need to be very random
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_-.';
$mask = substr(str_shuffle(str_repeat($chars, 5)), 0, self::CSRF_MASK_LENGTH);
// The + sign may be decoded as blank space later, which will fail the validation
$this-&_csrfToken = str_replace('+', '.', base64_encode($mask . $this-&xorTokens($token, $mask)));
in /web/v2_eeworm/vendor/yiisoft/yii2/helpers/BaseHtml.php
256257258259260261262263264265266267268
public static function csrfMetaTags()
$request = Yii::$app-&getRequest();
if ($request instanceof Request && $request-&enableCsrfValidation) {
return static::tag('meta', '', ['name' =& 'csrf-param', 'content' =& $request-&csrfParam]) . &\n
. static::tag('meta', '', ['name' =& 'csrf-token', 'content' =& $request-&getCsrfToken()]) . &\n&;
return '';
in /web/v2_eeworm/frontend/views/layouts/eeworm_main.php
43444546474849505152535455
&!DOCTYPE html PUBLIC &-//W3C//DTD XHTML 1.0 Transitional//EN& &http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&&
&html xmlns=&http://www.w3.org/1999/xhtml&&
&meta name=&viewport& content=&width=device-width, initial-scale=1&&
&meta http-equiv=&Content-Type& content=&text/ charset=utf-8& /&
&meta name=&wumiiVerification& content=&635f34da-cd68-4b3d-ba65-2bddb915ada2& /&
&?php echo
Html::csrfMetaTags() ?&
&title&&?php echo Html::encode($this-&title) ?&&/title&
&?php $this-&head() ?&
&link rel=&stylesheet& type=&text/css& href=&/css/new_css.css&/&
&link rel=&stylesheet& type=&text/css& href=&/styles/colorbox.css&/&
in /web/v2_eeworm/vendor/yiisoft/yii2/base/View.php
require('/web/v2_eeworm/frontend/views/la...')
319320321322323324325326327328329330331
public function renderPhpFile($_file_, $_params_ = [])
ob_start();
ob_implicit_flush(false);
extract($_params_, EXTR_OVERWRITE);
require($_file_);
return ob_get_clean();
* Renders dynamic content returned by the given PHP statements.
in /web/v2_eeworm/vendor/yiisoft/yii2/base/View.php
('/web/v2_eeworm/frontend/views/la...', ['content' => ])
241242243244245246247248249250251252253
$this-&renderers[$ext] = Yii::createObject($this-&renderers[$ext]);
/* @var $renderer ViewRenderer */
$renderer = $this-&renderers[$ext];
$output = $renderer-&render($this, $viewFile, $params);
$output = $this-&renderPhpFile($viewFile, $params);
$this-&afterRender($viewFile, $params, $output);
array_pop($this-&_viewFiles);
$this-&context = $oldC
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Controller.php
('/web/v2_eeworm/frontend/views/la...', ['content' => ], frontend\controllers\EewormController)
364365366367368369370371372373374375376
public function render($view, $params = [])
$output = $this-&getView()-&render($view, $params, $this);
$layoutFile = $this-&findLayoutFile($this-&getView());
if ($layoutFile !== false) {
return $this-&getView()-&renderFile($layoutFile, ['content' =& $output], $this);
in /web/v2_eeworm/frontend/controllers/EewormController.php
('dl_detail', ['data' => frontend\models\Download, 'data_left' => ['xg_arr' => null, 'xg_code' => null, 'maybe' => [stdClass, stdClass, stdClass, stdClass, ...], 'code' => [], ...], 'category' => frontend\models\Category])
1096109710981099110011011102110311041105110611071108
$data_left['code'] = array();
$data_left['userupload'] = Yii::$app-&db-&createCommand(&select * from eeworm_download where userid=$userid and ischeck=1 order by id desc limit 8&)-&queryAll();
$data_left['vip_download'] = Yii::$app-&db-&createCommand(&select * from eeworm_vip_download order by rand() limit 6&)-&queryAll();
return $this-&render('dl_detail',['data'=&$data,'data_left'=&$data_left,'category'=&$category]);
public function actionVip_detail()
$id = Yii::$app-&request-&get('id');
if(empty($id))
frontend\controllers\EewormController::actionDl_detail()
in /web/v2_eeworm/vendor/yiisoft/yii2/base/InlineAction.php
call_user_func_array([frontend\controllers\EewormController, 'actionDl_detail'], [])
495051525354555657
$args = $this-&controller-&bindActionParams($this, $params);
Yii::trace('Running action: ' . get_class($this-&controller) . '::' . $this-&actionMethod . '()', __METHOD__);
if (Yii::$app-&requestedParams === null) {
Yii::$app-&requestedParams = $
return call_user_func_array([$this-&controller, $this-&actionMethod], $args);
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Controller.php
(['id' => '300789'])
145146147148149150151152153154155156157
if ($runAction && $this-&beforeAction($action)) {
// run the action
$result = $action-&runWithParams($params);
$result = $this-&afterAction($action, $result);
// call afterAction on modules
foreach ($modules as $module) {
/* @var $module Module */
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Module.php
('dl_detail', ['id' => '300789'])
449450451452453454455456457458459460461
$parts = $this-&createController($route);
if (is_array($parts)) {
/* @var $controller Controller */
list($controller, $actionID) = $
$oldController = Yii::$app-&
Yii::$app-&controller = $
$result = $controller-&runAction($actionID, $params);
Yii::$app-&controller = $oldC
$id = $this-&getUniqueId();
throw new InvalidRouteException('Unable to resolve the request &' . ($id === '' ? $route : $id . '/' . $route) . '&.');
in /web/v2_eeworm/vendor/yiisoft/yii2/web/Application.php
('eeworm/dl_detail', ['id' => '300789'])
77787980818283848586878889
$route = $this-&catchAll[0];
$params = array_splice($this-&catchAll, 1);
Yii::trace(&Route requested: '$route'&, __METHOD__);
$this-&requestedRoute = $
$result = $this-&runAction($route, $params);
if ($result instanceof Response) {
$response = $this-&getResponse();
if ($result !== null) {
$response-&data = $
in /web/v2_eeworm/vendor/yiisoft/yii2/base/Application.php
(yii\web\Request)
369370371372373374375376377378379380381
$this-&state = self::STATE_BEFORE_REQUEST;
$this-&trigger(self::EVENT_BEFORE_REQUEST);
$this-&state = self::STATE_HANDLING_REQUEST;
$response = $this-&handleRequest($this-&getRequest());
$this-&state = self::STATE_AFTER_REQUEST;
$this-&trigger(self::EVENT_AFTER_REQUEST);
$this-&state = self::STATE_SENDING_RESPONSE;
$response-&send();
in /web/v2_eeworm/frontend/web/index.php
13141516171819
require(__DIR__ . '/../../common/config/main-local.php'),
require(__DIR__ . '/../config/main.php'),
require(__DIR__ . '/../config/main-local.php')
$application = new yii\web\Application($config);
$application-&run();
'id' => '300789',
$_SERVER = [
'USER' => 'apache',
'HOME' => '/var/www',
'FCGI_ROLE' => 'RESPONDER',
'SCRIPT_FILENAME' => '/web/v2_eeworm/frontend/web/index.php',
'QUERY_STRING' => '',
'REQUEST_METHOD' => 'GET',
'CONTENT_TYPE' => '',
'CONTENT_LENGTH' => '',
'SCRIPT_NAME' => '/index.php',
'REQUEST_URI' => '/dl/518/300789.html',
'DOCUMENT_URI' => '/index.php',
'DOCUMENT_ROOT' => '/web/v2_eeworm/frontend/web',
'SERVER_PROTOCOL' => 'HTTP/1.1',
'REQUEST_SCHEME' => 'http',
'GATEWAY_INTERFACE' => 'CGI/1.1',
'SERVER_SOFTWARE' => 'nginx/1.10.1',
'REMOTE_ADDR' => '220.177.198.53',
'REMOTE_PORT' => '51980',
'SERVER_ADDR' => '117.40.215.168',
'SERVER_PORT' => '80',
'SERVER_NAME' => '',
'REDIRECT_STATUS' => '200',
'HTTP_USER_AGENT' => 'Mozilla/4.0 ( MSIE 8.0; Windows NT 6.0; Trident/4.0)',
'HTTP_HOST' => '',
'HTTP_ACCEPT' => '*/*',
'HTTP_REFERER' => '/dl/518/300789.html',
'PHP_SELF' => '/index.php',
'REQUEST_TIME_FLOAT' => .0623,
'REQUEST_TIME' => ,Two simple Free Download
Two simple Free Download
Software Search For
two simple
Very fast port scanner!!! It scans for any open TCP ports! Check it out.
Size: 92KB &&&&License: Freeware &&&&Price: Free &&&&By:
Anonymize yourself with your own Virtual Private Network. simple and secure.
Size: 12.21MB &&&&License: Freeware &&&&Price: Free &&&&By:
MERGE is a very simple graphic utility for overlaying two images.
Size: 2.98MB &&&&License: Freeware &&&&Price: Free &&&&By:
Samsung TV is a simple set of two icons that represent a beautiful LCD TV set
Size: 522KB &&&&License: Freeware &&&&Price: Free &&&&By:
Freeware and simple software can control and configure PCs in your network.
Size: 5.08MB &&&&License: Freeware &&&&Price: Free &&&&By:
This software provides a simple form of network monitoring.
Size: 131KB &&&&License: Shareware &&&&Price: $100 &&&&By:
This package contains two simple OpenGL examples.
Size: 572KB &&&&License: Freeware &&&&Price: Free &&&&By:
This is designed as a simple network management tool, and features the follow...
Size: 299KB &&&&License: Freeware &&&&Price: Free &&&&By:
A simple,easy to use program to merge two pictures into a third one.
Size: 763KB &&&&License: Freeware &&&&Price: Free &&&&By:
Big Brother is the simplest tool for monitoring your IP-network for troubles.
Size: 125KB &&&&License: Freeware &&&&Price: Free &&&&By:
InterChat is a simple program that allows Local Area Network communication.
Size: 723KB &&&&License: Freeware &&&&Price: Free &&&&By:
A freeware SNTP client - simple Network Time Protocol - forsynchronizing your...
Size: 83KB &&&&License: Freeware &&&&Price: Free &&&&By:
This simple fluxgate compass is a device that employs two small coils.
Size: 2.00MB &&&&License: Freeware &&&&Price: Free &&&&By:
Tiny DHCP Server is a simple and user friendly DHCP service for your network
Size: 112KB &&&&License: Shareware &&&&Price: $34.95 &&&&By:
Auto Login - simple auto network login.
Size: 6KB &&&&License: Freeware &&&&Price: Free &&&&By:
simpleTrafficMonitor is a small network traffic tool
Size: 400KB &&&&License: Freeware &&&&Price: Free &&&&By:
iStat wireless is a simple Widget to monitor wireless network strength with a...
Size: 138KB &&&&License: Freeware &&&&Price: Free &&&&By:
Chit Chat is simple software to chat with your network users.
Size: 2.2MB &&&&License: Freeware &&&&Price: Free &&&&By:
KouChat is a simple serverless chat client for local area networks.
Size: 457KB &&&&License: Freeware &&&&Price: Free &&&&By:
simple network Sniffer. Not much complex, but it work.
Size: 206KB &&&&License: Freeware &&&&Price: Free &&&&By:
Editor's Pick
Related Search
& 2002 - 2013
All rights reserved.

我要回帖

更多关于 simple什么意思 的文章

 

随机推荐