Skip to content
This repository was archived by the owner on Nov 22, 2022. It is now read-only.

Commit 8b748bd

Browse files
author
Naville
committed
Restructure for Non-Xcode Dev. Support Reveal2
1 parent be0604a commit 8b748bd

File tree

91 files changed

+173
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+173
-99
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ Packages/
2323
layout/usr/lib/libReveal.dylib/libReveal.dylib
2424
libReveal.dylib
2525
libcycript.dylib
26-
Cycript/
26+
Cycript/
27+
Reveal2Server

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ before_install:
77
- clear
88
- export THEOS=/opt/theos
99

10-
script: "sudo python ./CIScripts/get-pip.py && ./Setup.sh && ./CIScripts/InstallTheos.sh &&./build.py DEBUG && cat STDOUT.log && cat STDERR.log"
10+
script: "sudo python ./CIScripts/get-pip.py && ./Setup.sh && ./CIScripts/InstallTheos.sh &&./build.py DEBUG && cat STDOUT.log && cat STDERR.log"

BuildConfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
ExtraCFlags=["-I"+os.getcwd()+"/Hooks/"]
88
ExtraOBJFiles=[]
99
ExtraCCFlags=["-std=c++11"]
10-
CreateExtraSegs={"Reveal":"./libReveal.dylib","FLEX":"./ExtraFWs/FLEX.framework/FLEX","Cycript":"./libcycript.dylib"}
10+
CreateExtraSegs={"Reveal":"./libReveal.dylib","FLEX":"./ExtraFWs/FLEX.framework/FLEX","Cycript":"./libcycript.dylib","Reveal2":"./Reveal2Server"}

CIScripts/InstallTheos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source ~/.bash_profile
44
sudo git clone --recursive https://github.com/theos/theos.git $THEOS
55
sudo git clone https://github.com/theos/headers.git $THEOS/Headers
66
sudo cp -r $THEOS/Headers/ $THEOS/include
7-
sudo rm -rf $THEOS/Headers/
7+
sudo rm -rf $THEOS/Headers/

DOCS/TODO/CoreTelephonySymbol.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1815,4 +1815,4 @@ Feel Free To Implement All This Functions By Yourself
18151815
36af4f70 s __kCTCallClass
18161816
36af4ef4 s __kCTCallRegisterClass
18171817
36af4f60 s __kCTCallTypeID
1818-
360a2bb8 b __kCallHistoryPropertyIDs
1818+
360a2bb8 b __kCallHistoryPropertyIDs

DOCS/TODO/SignatureDatabase.md

Lines changed: 1 addition & 1 deletion

DOCS/TODO/SignatureDatabaseSample.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@
8585
<string>NSObject</string>
8686
</dict>
8787
</dict>
88-
</plist>
88+
</plist>

Hooks/API/AppleAccount.xm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "../SharedDefine.pch"
1+
#import "../Global.h"
22
%group AppleAccount
33

44
%hook AADeviceInfo

Hooks/API/CommonCryptor.xm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#import "../Utils/SQLiteStorage.h"
55
#import "../Utils/PlistObjectConverter.h"
66
#import "../Utils/CallStackInspector.h"
7-
#import "../SharedDefine.pch"
7+
#import "../Global.h"
88

99

1010
// Utiity function

Hooks/API/CommonDigest.xm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#import "../Utils/SQLiteStorage.h"
55
#import "../Utils/PlistObjectConverter.h"
66
#import "../Utils/CallStackInspector.h"
7-
#import "../SharedDefine.pch"
7+
#import "../Global.h"
88

99
// No need to hook the CC_MDX_Init() functions as they don't do anything interesting
1010

0 commit comments

Comments
 (0)