Skip to content

Instantly share code, notes, and snippets.

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

skye rainyskye

馃挱
screaming (neutral)
  • Adelaide/Australia
  • 00:35 (UTC +09:30)
View GitHub Profile
@programminghoch10
programminghoch10 / snapchat_data_extractor.sh
Last active March 23, 2025 06:03
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