iTunes browser in AngularJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
copy contents of /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk from official SDK to /var/sdk on iPhone | |
Install apt from Cydia | |
pushd /var/sdk/usr/lib | |
ln -s libgcc_s.1.dylib libgcc_s.10.5.dylib | |
ln -s dylib1.o dylib1.10.5.o | |
ln -s crt1.o crt1.10.5.o | |
ln -s libstdc++.6.0.9.dylib libstdc++.6.dylib | |
ln -s libstdc++.6.0.9.dylib libstdc++.dylib | |
ln -s libobjc.A.dylib libobjc.dylib | |
ln -s libSystem.B.dylib libSystem.dylib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <pwd.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <stdio.h> | |
static void check(const char **name, const char *user) { | |
if (*name != NULL || user == NULL) | |
return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (w, d) { | |
var id = (new Date()).valueOf(), | |
itemTemplate = "<label>" | |
+ "<code>{name}=</code>" | |
+ "<input id='Cookie{name}{index}{id}' type='text' value='{value}' style='font-family:monospace;width:50%' />" | |
+ "</label>" | |
+ "<input type='button' value='Update' onclick='window.UpdateCookie{id}(\"{name}\", {index});' />" | |
+ "<input type='button' value='Delete' onclick='window.DeleteCookie{id}(\"{name}\");' />" | |
+ "<br/>", | |
formatTemplate = function (name, value, index) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* WITH MODS TO ORIG -- iOS Browser Bookmarklets to launch other apps and stuff */ | |
/* ver 2014-04-14a */ | |
/* backing up my "Open In" bookmarks */ | |
// note iOS6 requires some changes to these | |
// BEGIN TESTING STUFF -- IN PROFRESS LIKELY NOT WORKING | |
// SOME WORK, MOST tests are not WORK -- | |
// PINNER APP TEST STUFF (as a private one) | |
// the page title as the title and your selected text as the description. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# DeCrypt - v1.2 (2013-02-05) | |
# - v1.1 (2008-10-21) | |
# - v1.2 (2013-02-05) | |
# FloydianSlip, Proteas | |
# | |
# Heavily based on xcrack | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -u | |
# Setup architectures, library name and other vars + cleanup from previous runs | |
ARCHS=("armv7" "armv7s" "i386") | |
SDKS=("iphoneos" "iphoneos" "macosx") | |
LIB_NAME="libevent-2.0.21-stable" | |
TEMP_DIR="$(pwd)/tmp" | |
TEMP_LIB_PATH="$(pwd)/tmp/${LIB_NAME}" |
This gist is intended to help me recompile bash on OSX 10.6.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
SAGEM ROUTER FAST 3304/3464/3504 - telnet root password generator. | |
Work based on: http://1337day.com/exploit/16687 | |
""" | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#see output in < aplst_setlinks.sh aplst_setvars appList.err appList.log appList.out > | |
#dep:plutil.pl | |
dataPath=/var/mobile/Containers/Data/Application | |
bundlePath=/var/mobile/Containers/Bundle/Application | |
mcmMetaPrefFile=.com.apple.mobile_container_manager.metadata.plist | |
itunesMetaPrefFile=iTunesMetadata.plist | |
myAppLinksFolder=/var/mobile/applinks | |
exec > >(tee appList.log) |
OlderNewer