Newer
Older
WSSSnoop / WSSSnoop.html
0xRoM on 6 Jul 2023 2 KB Initial commit
  1. <html>
  2. <head>
  3. <title>WSSSnoop</title>
  4. <link rel="stylesheet" href="/style.css" type="text/css" />
  5. <link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
  6. </head>
  7. <body>
  8. <div class="topBar">
  9. <div class="topTitle">
  10. WSSSnoop
  11. </div>
  12. <center>
  13. <input type="text" name="cswshURL" id="cswshURL" value="" placeholder="wss://snoop.me" style="width: 500px;">
  14. <input type="button" id="startSnoop" value="start snooping" onclick="startSnooping()"/>
  15. <input type="button" id="stopSnoop" value="stop snooping" style="display:none" onclick="stopSnooping()"/>
  16. <br />
  17. <div class="topcorner">
  18. Status: <div id="status" style="display:inline-block; color:red"/>Offline</div>
  19. </div>
  20. </center>
  21. </div>
  22.  
  23. <div class="container">
  24.  
  25. <div class="sidebar">
  26. <div class="auto-header">Automations</div>
  27. <input class="auto-input" type="text" id="recvInput" placeholder="Recv">
  28. <input class="auto-input" type="text" id="sendInput" placeholder="Send">
  29. <button id="storeButton" onclick="storeValues()">Store</button>
  30. <table id="valueTable">
  31. <thead>
  32. <tr>
  33. <th>Recv</th>
  34. <th>Send</th>
  35. <th style="width: 20px;"></th>
  36. </tr>
  37. </thead>
  38. <tbody id="valueTableBody"></tbody>
  39. </table>
  40. </div>
  41.  
  42. <div id="cswsh-output" ></div>
  43.  
  44. </div>
  45.  
  46. <div class="sendBar" style="display:none">
  47. <form name="wssCommand" id="wssCommand" action="" onsubmit="return false">
  48. <label id="label">$></label>
  49. <input type="text" name="wssSendText" id="wssSendText" value="" placeholder="">
  50. <!--<input type="submit" id="wssSendbutton" value="" />-->
  51. </form>
  52. </div>
  53.  
  54. <div class="bottomBar">
  55. <div class="bottomBy">By <a href="https://rossmarks.uk" target="_new">Ross Marks</a></div>
  56. <div class="bottomText"><a href="/inject.php?payload=test" target="_new">/inject.php?payload=[inject here]</a></div>
  57. <div class="bottomClear">
  58. <input type="button" id="clearPage" value="clear page" onclick="clearPage();"/>
  59. </div>
  60. </div>
  61.  
  62. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  63. <script src="/script.js"></script>
  64. </body>
  65. </html>
Buy Me A Coffee