Skip to content

Instantly share code, notes, and snippets.

View rainyskye's full-sized avatar
💭
screaming (neutral)

skye rainyskye

💭
screaming (neutral)
  • Adelaide/Australia
  • 20:01 (UTC +09:30)
View GitHub Profile
@programminghoch10
programminghoch10 / snapchat_data_extractor.sh
Last active May 21, 2024 01:34
Snapchat Data Extractor
#!/bin/bash
if [[ $(id -u) -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
if [ -z $(pm list packages | grep com.snapchat.android) ]; then
echo "Snapchat not found"
exit 1
fi