Skip to content

Commit

Permalink
Update naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
forefy committed Feb 17, 2024
1 parent d10d2e3 commit 106beee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
python-version: "3.11"

- name: Install eBurger
- name: Install eburger
run: |
python -m venv /tmp/pip-audit-env
source /tmp/pip-audit-env/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
eBurger is a static analysis tool that provides a way to quickly query and analyze solidity smart contracts.

Running static analyzers won't win you competitions.
What we provide instead with eBurger is the ability to spin up custom templates tailored to your current audited project in minutes ([Wiki](https://github.com/forefy/eburger/wiki)) allowing you to orchestrate unique lookups through the codebase to empower your audits.
What we provide instead with eburger is the ability to spin up custom templates tailored to your current audited project in minutes ([Wiki](https://github.com/forefy/eburger/wiki)) allowing you to orchestrate unique lookups through the codebase to empower your audits.

- [How to install](#how-to-install)
- [How to run](#how-to-run)
Expand Down
2 changes: 1 addition & 1 deletion eburger/utils/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def save_as_markdown(output_file_path: Path, json_data: dict):
md_report_root_dir = Path(output_file_path).resolve().parent

markdown_content = "# eBurger Static Analysis Report\n\n"
markdown_content += f"This report was generated by the [eBurger](https://github.com/forefy/eburger) static analyzer on {datetime.now().strftime('%d.%m.%Y at %H:%M')}.\n\nThe results are not intended to substitute for comprehensive audits or professional assessments, and should be used only as a tool to help identify possible security vulnerabilities or insights and not for any other purpose.\n\n"
markdown_content += f"This report was generated by the [eburger](https://github.com/forefy/eburger) static analyzer on {datetime.now().strftime('%d.%m.%Y at %H:%M')}.\n\nThe results are not intended to substitute for comprehensive audits or professional assessments, and should be used only as a tool to help identify possible security vulnerabilities or insights and not for any other purpose.\n\n"

markdown_content += "## Insights Summary\n\n"
markdown_content += "| Issue | Severity | Occurrences |\n"
Expand Down

0 comments on commit 106beee

Please sign in to comment.