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
[dockerLogDecoder] | |
type = "PayloadRegexDecoder" | |
match_regex = "(.+)" | |
[DockerLogInput] | |
decoder = "dockerLogDecoder" | |
[RstEncoder] | |
[LogOutput] |
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
➜ /tmp export KUBE_AWS_ZONE=ap-southeast-1 | |
➜ /tmp export KUBERNETES_PROVIDER=aws; wget -q -O - https://get.k8s.io | bash | |
Downloading kubernetes release v1.0.3 to /tmp/kubernetes.tar.gz | |
--2015-08-20 15:37:44-- https://storage.googleapis.com/kubernetes-release/release/v1.0.3/kubernetes.tar.gz | |
Resolving storage.googleapis.com... 74.125.130.128, 2404:6800:4003:c01::80 | |
Connecting to storage.googleapis.com|74.125.130.128|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 121767360 (116M) [application/x-tar] | |
Saving to: 'kubernetes.tar.gz' |
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
export a=1 | |
export b=2 | |
export c=$a_$b |
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
(lldb) bt | |
* thread #1: tid = 0xaf18, 0x00007fff8f80f286 libsystem_kernel.dylib`__pthread_kill + 10, queue = 'com.apple.main-thread', stop reason = signal SIGABRT | |
* frame #0: 0x00007fff8f80f286 libsystem_kernel.dylib`__pthread_kill + 10 | |
frame #1: 0x00007fff88aaf42f libsystem_pthread.dylib`pthread_kill + 90 | |
frame #2: 0x00007fff8d60ab53 libsystem_c.dylib`abort + 129 | |
frame #3: 0x00007fff8b9b91cb libsystem_malloc.dylib`free + 428 | |
frame #4: 0x00000001005310df node`node::smalloc::CallbackInfo::WeakCallback(v8::Isolate*, v8::Local<v8::Object>) + 199 | |
frame #5: 0x0000000100246841 node`v8::internal::GlobalHandles::Node::PostGarbageCollectionProcessing(v8::internal::Isolate*) + 225 | |
frame #6: 0x0000000100245587 node`v8::internal::GlobalHandles::PostGarbageCollectionProcessing(v8::internal::GarbageCollector) + 103 | |
frame #7: 0x0000000100262b1b node`v8::internal::Heap::PerformGarbageCollection(v8::internal::GarbageCollector, v8::GCCallbackFlags) + 1195 |
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
➜ frida-node git:(nan-broken) ✗ lldb node -e "require('./').getLocalDevice()" | |
(lldb) target create "node" | |
Current executable set to 'node' (x86_64). | |
(lldb) settings set -- target.run-args "require('./').getLocalDevice()" | |
(lldb) r | |
/bin/sh: -c: line 0: syntax error near unexpected token `(' | |
/bin/sh: -c: line 0: `PATH="/Users/adam/code/frida/frida-node:/Users/adam/.nvm/versions/io.js/v2.5.0/bin:/usr/local/gcc-arm-none-eabi-4_9-2014q4/bin:/usr/local/opt/llvm/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" exec /usr/bin/arch -arch x86_64 node require(\'./\').getLocalDevice()' |
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
server { | |
listen 443; | |
server_name domain.org; | |
root /usr/share/nginx/domain.org; | |
index index.html; | |
ssl on; | |
ssl_certificate /root/ssl/bundle.crt; | |
ssl_certificate_key /root/ssl/domain.org.key; |
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
/* | |
THIS IS MALWARE BE CAREFUL | |
From | |
[email protected] | |
Content | |
Attached is my resume, let me know if its ok. | |
Thanks |
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
import ht from "hudson-taylor"; | |
import methods from "./methods"; | |
let transport = new ht.Transports.Local(); | |
let service = new ht.Service(transport); | |
let client = new ht.Client({ | |
s: transport | |
}); |
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 cdcontainer() { cd /var/lib/docker/containers/`docker ps | grep $1 | awk '{print $1}'`*; } |
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
var cpu = new CPU([ | |
0xA0, 0xCE, // 200: I = 206 | |
0x60, 0x01, // 202: V[0] = 0x01 | |
0xF0, 0x1E, // 204: I += V[0] | |
0x12, 0x0D, // 206: JMP 213 | |
0x12, 0x34, // 207-8: DATA | |
0x56, 0x78, // 209-10: DATA | |
0x9A, // 212: DATA | |
0xFA, 0x65 // 213 | |
]); |