8000 Enhancement/Modular Footer by x4v13r64 · Pull Request #787 · nccgroup/ScoutSuite · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Enhancement/Modular Footer #787

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 3 commits into from
Jun 11, 2020
Merged
Show file tree
Hide file tree
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
Diff view
1 change: 1 addition & 0 deletions ScoutSuite/output/data/html/partials/last_run_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h5 class="modal-title">Execution Details</h5>
<p><strong>Using ruleset</strong> <samp>{{last_run.ruleset_name}}</samp>:
<p class="ml-4 mr-4 text-justify"><em>{{last_run.ruleset_about}}</em></p>
</div>
</div>
</div>
</div>
</script>
Expand Down
7 changes: 7 additions & 0 deletions ScoutSuite/output/data/html/partials/report_footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<footer id="report-footer">
<div>
<p>Scout Suite is an open-source tool released by <a href="https://www.nccgroup.trust" rel="author" target="_blank">NCC Group</a>
<img src="inc-scoutsuite/favicon.ico" rel="icon" type="image/x-icon" alt="Red dot" />
</p>
</div>
</footer>
20 changes: 2 additions & 18 deletions ScoutSuite/output/data/html/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,28 +173,12 @@ <h2 id="section_paging-h2"></h2>
</div>
</div>

<footer>
<div class="row" id="footer">
<div>
<p>Scout Suite is an open-source tool released by <a href="https://www.nccgroup.trust" rel="author" target="_blank">NCC Group</a>
<img src="inc-scoutsuite/favicon.ico" rel="icon" type="image/x-icon" alt="Red dot" />
</p>
</div>
</div>
</footer>

<!-- Used by showPopup -->
<div id="modal-container" class="modal fade" tabindex="-1" role="dialog"></div>

<!--Always put footer at end of page-->
<script>
$(document).ready(function() {
// var docHeight = $(window).height();
// var footerHeight = $('#footer').height();
// var footerTop = $('#footer').position().top + footerHeight;
});
</script>
</div>

</body>


</html>
0