CTF-site-project/templates/osint-hardtask.html

34 lines
1.7 KiB
HTML
Raw Normal View History

2025-04-15 16:48:54 +03:00
{% extends 'utils/_task.html' %}
{% block content %}
{% include 'utils/_forensicsidenav.html' %}
<div id="popup" class="sql-guide capsule-window">
2025-04-15 20:46:28 +03:00
<p class="simpletext" style="text-align: left">
2025-04-15 16:48:54 +03:00
<span class="close-btn usable-context" onclick="hidePopup()">скрыть</span>
</div>
<div class="container">
<div class="small capsule-window info1" style="height: auto">
2025-04-15 20:46:28 +03:00
<p class="simpletext">Ты наверное уже видел Gitea или GitHub проекта.. Не находил там ничего странного? По-моему, при разработке там остался один <abbr class="hltext" title="Смотри подсказку(кнопка снизу слева)">подозрительный файл</abbr>, сможешь посмотреть его?</p>
2025-04-15 16:48:54 +03:00
</div>
<div class="flag-input">
<h3 class="header" style="text-align:left">Введите ответ:</h3>
2025-04-15 20:46:28 +03:00
<form action="/osint/really_hard_task" method="post" class="simpletext">
2025-04-15 16:48:54 +03:00
<input class="inpt" type="text" name="user_flag" style="width: 100%; height: 1.25rem; margin: 0">
<input type="submit" value="Submit" class="btn1" style="margin-top: 1.25rem">
</form>
</div>
</div>
{% if error %}
<div id="error"> <p>{{ error }}</p> </div>
{% elif success_flag %}
<div class="task-done">
<h1 class="header">Вы прошли задание!</h1>
<img class="done" src="{{ url_for('static', filename='imgs/done_icon.png') }}">
2025-04-15 20:46:28 +03:00
<a href="{{ url_for('osint') }}" class="usable-context" style="text-align: canter; margin: 1rem; padding: 1rem;"> < Вернуться к заданиям > </a>
2025-04-15 16:48:54 +03:00
</div>
{% endif %}
{% endblock %}