Skip to content
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

Fix Fortify small typos #239

Merged
merged 3 commits into from
Apr 29, 2024
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
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Rev-2024042101 Brian Davis <[email protected]>
Thanks @katexochen
* Use Dynamic Section if there is no symbols table
Thanks @ffontaine
* Check foritfy vs fortified
* Check fortify vs fortified
Thanks @azat
Rev-2022052701 Brian Davis <[email protected]>
* update to 2.6.0
Expand Down
2 changes: 1 addition & 1 deletion src/functions/proccheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ proccheck() {
fi
fi

#check for forifty source support
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make build needs run before checking in.

the hack/enable-git-hooks.sh script will enable the pre-commit hooks which will prevent committing without the render and do it for you so then its just adding it.

#check for Fortify source support
Proc_FS_functions="$(${readelf} -s "${1}/exe" 2> /dev/null | awk '{ print $8 }' | sed 's/_*//' | sed -e 's/@.*//')"
if grep -q '_chk$' <<< "$Proc_FS_functions"; then
echo_message '\033[32mYes\033[m' 'Yes' " fortify_source='yes'>" '"fortify_source":"yes" }'
Expand Down
2 changes: 1 addition & 1 deletion tests/hardening-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ echo "PIE process validation tests passed"

#============================================

echo "Starting Foritfy process check"
echo "Starting Fortify process check"
# Yes
for bin in all all32 all_cl all_cl32; do
"${DIR}"/binaries/output/${bin} > /dev/null &
Expand Down
Loading