8000 Update index.html · Pull Request #76 · JoyChou93/java-sec-code · GitHub
[go: up one dir, main page]

Skip to content

Update index.html #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from Jun 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
< 8000 input type="hidden" data-csrf="true" name="authenticity_token" value="RejckC1jA4bxzrErSTB6xZokI7OjURkiySjLy2T/OmNOaEtyqu1lHeZmUago8nU2EMMqNS9qT602Bkstv/zkxA==" />
Diff view
Update index.html
fix '/rce/exec' path error
  • Loading branch information
wzqs authored May 24, 2023
commit 0c253adbed202b0cbef401a375cfb7b2c8a773e1
4 changes: 2 additions & 2 deletions src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<a th:href="@{/path_traversal/vul?filepath=../../../../../etc/passwd}">PathTraversal</a>&nbsp;&nbsp;
<a th:href="@{sqli/mybatis/vuln01?username=joychou' or '1'='1}">SqlInject</a>&nbsp;&nbsp;
<a th:href="@{/ssrf/urlConnection/vuln?url=file:///etc/passwd}">SSRF</a>&nbsp;&nbsp;
<a th:href="@{/rce/exec?cmd=whoami}">RCE</a>&nbsp;&nbsp;
<a th:href="@{/rce/runtime/exec?cmd=whoami}">RCE</a>&nbsp;&nbsp;
<a th:href="@{/ooxml/upload}">ooxml XXE</a>&nbsp;&nbsp;
<a th:href="@{/xlsx-streamer/upload}">xlsx-streamer XXE</a>
<a th:href="@{/env}">actuator env</a>
Expand All @@ -31,4 +31,4 @@
<a th:href="@{/logout}">logout</a>

</body>
</html>
</html>
0