- 扫描 ID:
- b325d8fd-0166-4985-9820-40d54f0c67c5已完成
- 提交的 URL:
- https://mwtahm.com:8080/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 4 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
submitLoginForm | function |
控制台日志消息 · 找到 0 条
记录到 Web 控制台的消息
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<title>qBittorrent Web UI</title>
<link rel="icon" type="image/png" href="images/qbittorrent32.png">
<link rel="icon" type="image/svg+xml" href="images/qbittorrent-tray.svg">
<link rel="stylesheet" type="text/css" href="css/login.css?v=1h6l5by">
<noscript>
<link rel="stylesheet" type="text/css" href="css/noscript.css?v=1h6l5by" />
</noscript>
<script src="scripts/login.js?locale=en&v=1h6l5by"></script>
</head>
<body>
<noscript id="noscript">
<h1>JavaScript Required! You must enable JavaScript for the Web UI to work properly</h1>
</noscript>
<div id="main">
<h1>qBittorrent Web UI</h1>
<div id="logo" class="col">
<img src="images/qbittorrent-tray.svg" alt="qBittorrent logo">
</div>
<div id="formplace" class="col">
<form id="loginform" method="post" onsubmit="submitLoginForm(event);">
<div class="row">
<label for="username">Username</label><br>
<input type="text" id="username" name="username" autocomplete="username" required="">
</div>
<div class="row">
<label for="password">Password</label><br>
<input type="password" id="password" name="password" autocomplete="current-password" required="">
</div>
<div class="row">
<input type="submit" id="login" value="Login">
</div>
</form>
</div>
<div id="error_msg"></div>
</div>
</body></html>