91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP如何實現保存網站用戶密碼到css文件

發布時間:2021-06-22 15:15:14 來源:億速云 閱讀:167 作者:小新 欄目:開發技術

小編給大家分享一下PHP如何實現保存網站用戶密碼到css文件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

I春秋的登陸界面,我們可以看到用戶和密碼的的name屬性分別是:“username還有password“,當然針對i春秋這樣的cms,你若是巧合的擁有這樣類似的網站shell,

PHP如何實現保存網站用戶密碼到css文件

然后我們再找一個一下thinkphp的登陸界面:

PHP如何實現保存網站用戶密碼到css文件

其實也是看賬戶 還有 密碼的name屬性:“user 還有 password“,其實登陸中的name都差不多,那么我們就可以直接在shell中找到登陸文件 ,然后修改相關內容即可。

那么問題來了,很多人會感覺到登陸的文件很繁瑣或者是不好找什么的,那么最好的辦法就是我們自己寫一個抓取登陸時候post數據的腳本,然后用相關的文件來include它,這樣就完成了既保證網站安全運行,又保障了你能夠得到你想要的密碼。驚喜不驚喜,意外不意外。

再看一下我的網站后臺,很簡單,直接admin目錄,啥也不說了,直接找到我的admin目錄,include我們的腳本,就拿到了管理員的密碼

我是不是說多了怎么扯犢子到管理員的密碼了,我日啊,罪過罪過,我是故意的,你沒有聽錯,我就是故意的,This is bypass ,this is a gold key,when you wonna be get someone else's password .

PHP如何實現保存網站用戶密碼到css文件

哈哈,你開心了嗎,兄弟們

其實,對于那種開始就讓你登陸的網站,你可以從它的index.php文件來進行循規蹈矩,看它的require 或者 include等的調用文件,只要和登陸有關系,或者直接可以說成是登陸的過程中會調用到的文件來說直接把咱們研究的文件include其中即可拿到密碼。

啰嗦了這么久,上面這句才是重點,讓你們失望了,小弟的語言組織能力需要聯系,那么就總結一句話吧:凡是登

PHP如何實現保存網站用戶密碼到css文件

陸的過程有調用到的文件,咱么那就可以include進去,然后就拿到密碼了!!

最后上一張我利用的圖片,不許激動哦

PHP如何實現保存網站用戶密碼到css文件

PS:下面看段實例代碼php使用gzip壓縮傳輸js和css文件的方法

<?php
 /**
  * 完整調用示例:
  * 1、combine.php?t=j&b=public&fs=jslib.jquery,function
  *
  * 該例子調用的是網站根目錄下的public/jslib/jquery.js和public/function.js
  *
  * 2、combine.php?t=j&fs=jslib.jquery,function
  *
  * 該例子調用的是網站根目錄下的jslib/jquery.js和function.js
  *
  * 3、combine.php?t=c&b=public.css&fs=common,index
  *
  * 該例子調用的是網站根目錄下的public/css/common.css和public/css/index.css
  *
  * 4、combine.php?t=c&fs=css.common
  * 該例子調用的是網站根目錄下的css/common.css
  *
  * 注:多個文件名之間用,分隔;只有一個文件名最后不要有,
  *  用,分隔的多個文件會被壓縮進一個文件,一次性傳給瀏覽器
  **/
 $is_bad_request=false;
 $cache = true;
 $doc_root_uri=$_SERVER['DOCUMENT_ROOT'].'/';
 $cachedir = $doc_root_uri . 'public/cache';
 //文件類型,j為js,c為css
 $type=isset($_GET['t'])?($_GET['t']=='j'||$_GET['t']=='c'?$_GET['t']:''):'';
 //存放js和css文件的基目錄, 例如:?b=public.js 代表的是/public/js文件夾,出發點是網站根目錄
 //基目錄參數不是必須的,如果有基目錄那么這個基目錄就會附加在文件名之前
 $base =isset($_GET['b'])?($doc_root_uri.str_replace('.','/',$_GET['b'])):$doc_root_uri;
 //文件名列表,文件名不帶后綴名.比如基目錄是
 //文件名的格式是 :基目錄(如果有)+文件包名+文件名
 //例如:類型是j,
 //  文件名public.js.jquery
 //  如果有基路徑且為public,
 //  那么轉換后的文件名就是/public/public/js/jquery.js
 //  如果沒有基路徑
 //  那么轉換后的文件名就是/public/js/jquery.js
 //多個文件名之間用,分隔
 $fs=isset($_GET['fs'])?str_replace('.','/',$_GET['fs']):'';
 $fs=str_replace(',','.'.($type=='j'?'js,':'css,'),$fs);
 $fs=$fs.($type=='j'?'.js':'.css');
 if($type==''||$fs==''){$is_bad_request=true;}
 //die($base);
 if($is_bad_request){header ("HTTP/1.0 503 Not Implemented");}
 $file_type=$type=='j'?'javascript':'css';
 $elements = explode(',',preg_replace('/([^?]*).*/', '\1', $fs));
 // Determine last modification date of the files
 $lastmodified = 0;
 while (list(,$element) = each($elements)) {
   $path =$base . '/' . $element;
   if (($type == 'j' && substr($path, -3) != '.js') ||
     ($type == 'c' && substr($path, -4) != '.css')) {
     header ("HTTP/1.0 403 Forbidden");
     exit;
   }
   if (substr($path, 0, strlen($base)) != $base || !file_exists($path)) {
     header ("HTTP/1.0 404 Not Found");
     exit;
   }
   $lastmodified = max($lastmodified, filemtime($path));
 }
 // Send Etag hash
 $hash = $lastmodified . '-' . md5($fs);
 header ("Etag: \"" . $hash . "\"");
 if (isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
   stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) == '"' . $hash . '"')
 {
   // Return visit and no modifications, so do not send anything
   header ("HTTP/1.0 304 Not Modified");
   header ("Content-Type: text/" . $file_type);
   header ('Content-Length: 0');
 }
 else
 {
   // First time visit or files were modified
   if ($cache)
   {
     // Determine supported compression method
     $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
     $deflate = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate');
     // Determine used compression method
     $encoding = $gzip ? 'gzip' : ($deflate ? 'deflate' : 'none');
     // Check for buggy versions of Internet Explorer
     if (!strstr($_SERVER['HTTP_USER_AGENT'], 'Opera') &&
       preg_match('/^Mozilla\/4\.0 \(compatible; MSIE ([0-9]\.[0-9])/i', $_SERVER['HTTP_USER_AGENT'], $matches)) {
       $version = floatval($matches[1]);
       if ($version < 6)
         $encoding = 'none';
       if ($version == 6 && !strstr($_SERVER['HTTP_USER_AGENT'], 'EV1'))
         $encoding = 'none';
     }
     // Try the cache first to see if the combined files were already generated
     $cachefile = 'cache-' . $hash . '.' . $file_type . ($encoding != 'none' ? '.' . $encoding : '');
     if (file_exists($cachedir . '/' . $cachefile)) {
       if ($fp = fopen($cachedir . '/' . $cachefile, 'rb')) {
         if ($encoding != 'none') {
           header ("Content-Encoding: " . $encoding);
         }
         header ("Content-Type: text/" . $file_type);
         header ("Content-Length: " . filesize($cachedir . '/' . $cachefile));
         fpassthru($fp);
         fclose($fp);
         exit;
       }
     }
   }
   // Get contents of the files
   $contents = '';
   reset($elements);
   while (list(,$element) = each($elements)) {
     $path = $base . '/' . $element;
     $contents .= "\n\n" . file_get_contents($path);
   }
   // Send Content-Type
   header ("Content-Type: text/" . $file_type);
   if (isset($encoding) && $encoding != 'none')
   {
     // Send compressed contents
     $contents = gzencode($contents, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
     header ("Content-Encoding: " . $encoding);
     header ('Content-Length: ' . strlen($contents));
     echo $contents;
   }
   else
   {
     // Send regular contents
     header ('Content-Length: ' . strlen($contents));
     echo $contents;
   }
   // Store cache
   if ($cache) {
     if ($fp = fopen($cachedir . '/' . $cachefile, 'wb')) {
       fwrite($fp, $contents);
       fclose($fp);
     }
   }
 }

以上是“PHP如何實現保存網站用戶密碼到css文件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昭通市| 木里| 隆昌县| 松潘县| 白河县| 汕尾市| 青海省| 梅州市| 丹巴县| 长子县| 祁连县| 佳木斯市| 闻喜县| 屏山县| 霍城县| 铁岭市| 麟游县| 丰台区| 牙克石市| 广安市| 桑日县| 新晃| 共和县| 哈巴河县| 新河县| 沧源| 蓝田县| 绵阳市| 成都市| 石棉县| 南通市| 佳木斯市| 卓资县| 镇康县| 资溪县| 巴彦淖尔市| 渑池县| 阿巴嘎旗| 色达县| 城市| 安吉县|