Forum Thread: Metasploit webcam_stream Plays on Some Javascript Html Full Size Player

When i start webcam_stream or screenshare command it opens the browser & started the video on full frame resulting bad image. How do i fix this? please help. It making my life hell

it`s source is

<html>
<head>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<title>Metasploit screenshare - 192.168.8.101</title>
<script language="javascript">
function updateStatus(msg) {
var status = document.getElementById("status");
status.innerText = msg;
}

function noImage() {
document.getElementById("streamer").style = "display:none";
updateStatus("Waiting");
}

var i = 0;
function updateFrame() {
var img = document.getElementById("streamer");
img.src = "zmVCzLSp.jpeg#" + i;
img.style = "display:";
updateStatus("Playing");
i++;
}

setInterval(function() {
updateFrame();
},25);

</script>
</head>
<body>
<noscript>
<h2><font color="red">Error: You need Javascript enabled to watch the stream.</font></h2>
</noscript>
<pre>
Target IP : 192.168.8.101
Start time : 2019-10-23 21:23:41 +0500
Status : <span id="status"></span>
</pre>
<br>
<img onerror="noImage()" id="streamer">
<br><br>
<a href="metasploit.com" >metasploit.com</a>
</body>
</html>

Be the First to Respond

Share Your Thoughts

  • Hot
  • Active