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
.class public final Lcom/google/grandcentral/api2/Api2$ApiPhoneCall; | |
.super Lcom/google/protobuf/GeneratedMessageLite; | |
.source "Api2.java" | |
# annotations | |
.annotation system Ldalvik/annotation/EnclosingClass; | |
value = Lcom/google/grandcentral/api2/Api2; | |
.end annotation |
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
[54%]diff@rocksteady:[repo] $ git clone --verbose https://git01.codeplex.com/veracrypt | |
Cloning into 'veracrypt'... | |
POST git-upload-pack (gzip 1440 to 623 bytes) | |
remote: Counting objects: 8996, done. | |
remote: Compressing objects: 100% (6843/6843), done. | |
remote: Total 8996 (delta 7179), reused 2812 (delta 2010) | |
Receiving objects: 100% (8996/8996), 43.16 MiB | 1.46 MiB/s, done. | |
error: RPC failed; curl 56 SSLRead() return error -9806 | |
Resolving deltas: 100% (7179/7179), done. |
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
screen -U -S irc | |
/set term_charset utf-8 | |
/set recode_autodetect_utf8 ON | |
/set recode_fallback ISO-8859-15 | |
/set recode_out_default_charset ISO-8859-15 | |
/set recode_transliterate ON | |
/set recode ON |
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
''' | |
IDAPython script that generates a YARA rule to match against the | |
basic blocks of the current function. It masks out relocation bytes | |
and ignores jump instructions (given that we're already trying to | |
match compiler-specific bytes, this is of arguable benefit). | |
If python-yara is installed, the IDAPython script also validates that | |
the generated rule matches at least one segment in the current file. | |
author: Willi Ballenthin <[email protected]> |
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
package main | |
import ( | |
"errors" | |
"fmt" | |
"os" | |
"time" | |
"github.com/robertkrimen/otto" | |
) |
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
package main | |
import ( | |
"fmt" | |
"github.com/robertkrimen/otto" | |
) | |
func main() { | |
vm := otto.New() |
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
all: | |
gcc decrypt.c -I/usr/local/opt/boringssl/include -L/usr/local/opt/boringssl/lib -lcrypto -o kony_decrypt |
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
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
"sync" | |
"time" | |
) |
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
void Log(std::string s){ | |
JNIEnv *env; | |
g_JavaVM->GetEnv((void**)&env, JNI_VERSION_1_6); | |
jstring jstr1 = env->NewStringUTF(s.c_str()); | |
jclass clazz = env->FindClass("diff/strazzere/secret/method"); | |
// Later part is dalvik notation for parameters and return value, string param and void return value here | |
jmethodID mid = env->GetStaticMethodID(clazz, "methodname", "(Ljava/lang/String;)V"); |
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
rigby:contents diff$ ls -l | |
total 12600 | |
-rw-r--r-- 1 diff staff 13268 Dec 31 1979 AndroidManifest.xml | |
drwxr-xr-x 6 diff staff 204 Sep 12 14:03 META-INF | |
-rw-r--r-- 1 diff staff 623 Dec 31 1979 androidannotations-api.properties | |
drwxr-xr-x 4 diff staff 136 Sep 12 14:03 assets | |
-rw-r--r-- 1 diff staff 939 Dec 31 1979 build-data.properties | |
-rw-r--r-- 1 diff staff 5646628 Dec 31 1979 classes.dex | |
drwxr-xr-x 3 diff staff 102 Sep 12 14:03 jsr305_annotations | |
drwxr-xr-x 5 diff staff 170 Sep 12 14:03 lib |