- <html>
- <head>
- <title>WSSSnoop</title>
- <link rel="stylesheet" href="/style.css" type="text/css" />
- <link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
- </head>
- <body>
- <div class="topBar">
- <div class="topTitle">
- WSSSnoop
- </div>
- <center>
- <input type="text" name="cswshURL" id="cswshURL" value="" placeholder="wss://snoop.me" style="width: 500px;">
- <input type="button" id="startSnoop" value="start snooping" onclick="startSnooping()"/>
- <input type="button" id="stopSnoop" value="stop snooping" style="display:none" onclick="stopSnooping()"/>
- <br />
- <div class="topcorner">
- Status: <div id="status" style="display:inline-block; color:red"/>Offline</div>
- </div>
- </center>
- </div>
-
- <div class="container">
-
- <div class="sidebar">
- <div class="auto-header">Automations</div>
- <input class="auto-input" type="text" id="recvInput" placeholder="Recv">
- <input class="auto-input" type="text" id="sendInput" placeholder="Send">
- <button id="storeButton" onclick="storeValues()">Store</button>
- <table id="valueTable">
- <thead>
- <tr>
- <th>Recv</th>
- <th>Send</th>
- <th style="width: 20px;"></th>
- </tr>
- </thead>
- <tbody id="valueTableBody"></tbody>
- </table>
- </div>
-
- <div id="cswsh-output" ></div>
-
- </div>
-
- <div class="sendBar" style="display:none">
- <form name="wssCommand" id="wssCommand" action="" onsubmit="return false">
- <label id="label">$></label>
- <input type="text" name="wssSendText" id="wssSendText" value="" placeholder="">
- <!--<input type="submit" id="wssSendbutton" value="" />-->
- </form>
- </div>
-
- <div class="bottomBar">
- <div class="bottomBy">By <a href="https://rossmarks.uk" target="_new">Ross Marks</a></div>
- <div class="bottomText"><a href="/inject.php?payload=test" target="_new">/inject.php?payload=[inject here]</a></div>
- <div class="bottomClear">
- <input type="button" id="clearPage" value="clear page" onclick="clearPage();"/>
- </div>
- </div>
-
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
- <script src="/script.js"></script>
- </body>
- </html>