ASP代碼加密

來源:互聯網
上載者:User

ASP代碼一般是明文,很少有加密的,MS有個工具Script Encoder可以加密,這個東東可以微軟官方網站免費下載,而且還有詳細使用說明,但是經過它加密後的檔案會有<%@ language = vbscript.encode %>,管理員看到這句話就知道這個asp檔案被加密了。而且也有相關的解密檔案。

本文提供一種簡單的方法,可以加密ASP代碼,主要思路是將代碼做些運算,比如將全部代碼移動一位,基本上就算加密了,主要的加解密函數如下:

function UnEncode(temp)

but=1

for i =1 to len(temp)

if mid(temp,i,1)<>"湯" then

pk=asc(mid(temp,i,1))-but

if pk>126 then

pk=pk-95

elseif pk<32 then

pk=pk+95

end if

a=a&chr(pk)

else

a=a&vbcrlf

end if

next

UnEncode=a

end function

function Encode(temp)

but=1

cc=replace(temp,vbcrlf,"湯")

for i= 1 to len(cc)

if mid(cc,i,1)<>"湯" then

pk=asc(mid(cc,i,1))+but

if pk>126 then

pk=pk-95

elseif pk<32 then

pk=pk+95

end if

a=a&chr(pk)

else

a=a&"湯"

end if

next

a=replace(a,"""","""""")

Encode=a

end function

在開發的時候,通常將關鍵ASP代碼Encode,再使用Excute(Uncode(ipaddr))執行就可以了。這樣管理員一般不能直接看到關鍵代碼,一般在程式裡不要帶上Encode函數,只在開發的時候使用,此外,UnEncode也可以改成其它函數名。

這種方式加密比較簡單,解密也很容易。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.