forked from netspooky/BGGP
-
Notifications
You must be signed in to change notification settings - Fork 14
BGGP6 Verification Resources
【☆ ゆう ☆ 】 edited this page Oct 19, 2025
·
3 revisions
Keeping some stuff here that may be useful
Refer to the full verifier guide for more info!
| Size | Author | Type | BGGP | Score | Issue | Writeup | Note |
|------|--------|------|------|-------|-------|---------|------|
This script will reverse a file and display the hashes to verify that it is a palindrome:
#!/bin/bash
if [ "$#" -lt 1 ]; then
echo "Usage: $0 <filename>"
exit 1
fi
perl -0777pe '$_=reverse $_' $1 > $1.R
sha256sum $1
sha256sum $1.R