Skip to content

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!

Table template for new file types

| Size | Author | Type | BGGP | Score | Issue | Writeup | Note |
|------|--------|------|------|-------|-------|---------|------|

Palindrome Validator for BGGP1

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

Clone this wiki locally