Skip to content

pky1987/Audit

Repository files navigation

pandoc report-example.md -o report.pdf --from markdown --template=eisvogel --listings

bb write_vk --oracle_hash keccak -b ./target/circuits.json -o ./target
bb write_solidity_verifier -k ./target/vk -o ./target/Verifier.sol
rm -rf PRust/.git
git push -u origin main --force
git config --global user.email

Remove deleted file history from Github

  1. Select files which need to be deleted.
git filter-repo --invert-paths --path DEVELOPER_QUICK_REFERENCE.md --path FEATURE_ROADMAP.md --path PHASE_1_2_3_COMPLETION.md --path PHASE_2_COMPLETION.md --path PROJECT_STATUS.md
  1. Fresh Clone Required

git-filter-repo refuses to run on non-fresh clones. Clone to a new directory first.

git clone https://github.com/pky1987/PChat.git fresh-clone
cd fresh-clone

  1. Run History Rewrite

Use git-filter-repo with --sensitive-data-removal flag for extra safety.

git filter-repo --sensitive-data-removal --invert-paths --path DEVELOPER_QUICK_REFERENCE.md --path FEATURE_ROADMAP.md --path PHASE_1_2_3_COMPLETION.md --path PHASE_2_COMPLETION.md --path PROJECT_STATUS.md
  1. Force Push All Refs

Overwrite remote history completely.

git push --force --mirror origin

5.n8n

docker run -it --rm -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n:nightly
  1. Testing Indiviudal function of test file.
cd otp && mix test test/otp/abuse/detector_test.exs --only "test abuse response actions logs abuse incidents"
  1. POST code
curl -i -X POST http://localhost:4000/api/delivery-report \
  -H "Content-Type: application/json" \
  -d '{"provider_message_id":"abc123","status":"delivered","delivered_at":"2025-12-31T12:00:00Z"}'

  1. Creating and Generating API Key

Export OTP

export OTP_ADMIN_TOKEN="abcdefm"

Check whether if it exists or not.

echo $OTP_ADMIN_TOKEN

Post Code

curl -i -X POST http://localhost:4000/api/admin/api_keys \
  -H "x-admin-token: Prakash-Yadav-03" \
  -H "Content-Type: application/json" \
  -d '{"name":"Prakash"}'


curl -s "http://localhost:5000/api/cameras" -H "Origin: http://localhost:5175" | head -20

Python Virtual Environment

  1. Create virtual environment:
python3 -m venv venv
  1. Activate virtual environment:
source venv/bin/activate

About

All necessary template for audit report.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published