Make an iTunes encrypted backup which contains the Keychain, where Tofu stores all the tokens.
You'll need irestore for decrypting the keychain. Use it like this:
irestore iPhone dumpkeys dump.txt
| #!/usr/bin/env bash | |
| # --slave /usr/bin/$1 $1 /usr/bin/$1-\${version} \\ | |
| function register_clang_version { | |
| local version=$1 | |
| local priority=$2 | |
| update-alternatives \ | |
| --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-${version} ${priority} \ |
| FROM i386/alpine:3.10.2 | |
| # Wine 32Bit for running EXE | |
| RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0 | |
| # Configure Wine | |
| RUN winecfg | |
| # Install wget | |
| RUN apk add --no-cache wget=1.20.3-r0 |
| # This function defines a 'cd' replacement function capable of keeping, | |
| # displaying and accessing history of visited directories, up to 10 entries. | |
| # To use it, uncomment it, source this file and try 'cd --'. | |
| # acd_func 1.0.5, 10-nov-2004 | |
| # Petar Marinov, http:/geocities.com/h2428, this is public domain | |
| xcd_func () | |
| { | |
| local x2 the_new_dir adir index |
| # Stick this in your home directory and point your Global Git config at it by running: | |
| # | |
| # $ git config --global core.attributesfile ~/.gitattributes | |
| # | |
| # See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details | |
| *.c diff=cpp | |
| *.h diff=cpp | |
| *.c++ diff=cpp | |
| *.h++ diff=cpp |
| import { ApiGatewayManagementApi, DynamoDB } from 'aws-sdk'; | |
| import { scanItems } from './dynamodb'; | |
| const { AWS_REGION, TOPICS_TABLE } = process.env; | |
| const dynamoDb = new DynamoDB({ | |
| apiVersion: '2012-08-10', | |
| region: AWS_REGION, | |
| }); |
Make an iTunes encrypted backup which contains the Keychain, where Tofu stores all the tokens.
You'll need irestore for decrypting the keychain. Use it like this:
irestore iPhone dumpkeys dump.txt