Skip to content

Commit

Permalink
chore: Update repository links in README.md and install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
froz42 committed Aug 20, 2024
1 parent eac2b00 commit e939b3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<br />
<div align="center">
<a href="https://github.com/tmatis/funcheck">
<a href="https://github.com/froz42/funcheck">
<img src="https://user-images.githubusercontent.com/54767855/227778602-a56ecf02-4d6e-4472-8054-5e2e551eb42e.png" alt="Logo" height="200"/>
</a>

<p align="center">
A tool for checking functions calls return protections.
<a href="https://github.com/tmatis/funcheck/issues">Report Bug</a>
<a href="https://github.com/froz42/funcheck/issues">Report Bug</a>
·
<a href="https://github.com/tmatis/funcheck/issues">Request Feature</a>
<a href="https://github.com/froz42/funcheck/issues">Request Feature</a>
</p>
</div>

Expand Down Expand Up @@ -47,7 +47,7 @@ making each call fail one by one and check if the program doesn't crash and hand
**This tool only works on Linux for now.**
***this tool can have undefined behavior on threaded programs (WIP)**

You can see the list of handled functions and how to add new ones here: [Hooked functions](https://github.com/tmatis/funcheck/wiki/Functions)
You can see the list of handled functions and how to add new ones here: [Hooked functions](https://github.com/froz42/funcheck/wiki/Functions)

## Getting Started

Expand All @@ -59,7 +59,7 @@ You can see the list of handled functions and how to add new ones here: [Hooked
### Quick install

```bash
bash -c 'bash <(curl -s https://raw.githubusercontent.com/tmatis/funcheck/main/scripts/install.sh)'
bash -c 'bash <(curl -s https://raw.githubusercontent.com/froz42/funcheck/main/scripts/install.sh)'
```

You can choose to install temporarily, permanently or uninstall the tool.
Expand All @@ -81,7 +81,7 @@ You need to build both the `funcheck` binary and the `libfuncheck.so` library.
#### Clone the repository

```bash
git clone https://github.com/tmatis/funcheck.git
git clone https://github.com/froz42/funcheck.git
cd funcheck
```

Expand Down
4 changes: 2 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m'

HOST_URL="https://github.com/tmatis/funcheck/releases/latest/download/funcheck"
LIBRARY_URL="https://github.com/tmatis/funcheck/releases/latest/download/libfuncheck.so"
HOST_URL="https://github.com/froz42/funcheck/releases/latest/download/funcheck"
LIBRARY_URL="https://github.com/froz42/funcheck/releases/latest/download/libfuncheck.so"

SHELL=$(basename $SHELL)

Expand Down

0 comments on commit e939b3c

Please sign in to comment.