Skip to content

Instantly share code, notes, and snippets.

View kasiimh1's full-sized avatar

Kasim Hussain kasiimh1

  • United Kingdom
View GitHub Profile
#!/bin/bash
echo "Created by Kasiimh1 - https://gist.github.com/kasiimh1/6c856393f622b816febdaeffd8e9f4c6"
echo "Enter Source VPS IP"
read sourceIP
echo "Installing dependencies"
sudo apt-get update
sudo apt-get install \
#!/bin/bash
echo "Created by Kasiimh1 - https://gist.github.com/kasiimh1/7d6d72e9def6ea6b1103c90ae89007e8"
#Fix 'unable to resolve host VPSHOSTNAME: Name or service not known' on Liteserver!
hostname="$(cat /proc/sys/kernel/hostname)"
echo -n "Do you have the 'hostname: Name or service not known' when signing in via SSH? (y/n)? "
read answer
if [ "$answer" != "${answer#[Yy]}" ]; then
echo "Editing hostfile to add $hostname entry"
@kasiimh1
kasiimh1 / ipsw_keys.py
Created October 25, 2021 17:27 — forked from nicolas17/ipsw_keys.py
Extract iOS firmware keys using on-device AES engine - MOVED TO https://github.com/nicolas17/ipsw_keys
#!/usr/bin/env python
from sys import argv, stdout
from os import system, remove, path
from urlparse import urlparse
import re
import dfu
import ssl
import math
import json
import getopt
@kasiimh1
kasiimh1 / compile-tsschecker.sh
Last active November 17, 2021 15:14
Compile tsschecker macOS via brew.sh
brew install libirecovery.rb
brew install libtihmstar-general.rb
brew install libfragmentzip.rb
brew install tsschecker.rb
brew install img4tool.rb
brew install libimobiledevice-glue.rb
brew install idevicerestore.rb
cd StorX-Node && sudo su -c "bash <(wget -qO- https://raw.githubusercontent.com/Kasiimh1/StorX-Node/main/upgrade.sh)" root