This file contains hidden or 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
| $ adb shell netstat | |
| Proto R S Local Address Foreign Address State | |
| tcp6 0 0 ::ffff:10.171.225.120:55648 ::ffff:74.125.133.188:5228 ESTABLISHED | |
| tcp6 0 1 ::ffff:10.171.225.120:34181 ::ffff:221.130.183.16:80 CLOSE_WAIT | |
| tcp6 0 0 ::ffff:10.171.225.120:58042 ::ffff:69.28.57.164:10086 ESTABLISHED | |
| tcp6 0 0 ::ffff:10.171.225.120:56774 ::ffff:108.168.176.241:5222 TIME_WAIT |
This file contains hidden or 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 r2pipe | |
| r2=r2pipe.open("/bin/ls", False, False, True) | |
| for a in range(1,10): | |
| print r2.cmdj("drj") | |
| r2.cmd("ds") |
This file contains hidden or 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 r2pipe | |
| import asyncdispatch | |
| proc test {.async.} = | |
| let r2p = R2PipeHttp(url: "http://cloud.radare.org") | |
| let res = await r2p.cmd("?V") | |
| echo(res); | |
| waitFor test(); |
This file contains hidden or 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 | |
| R=/data/data/com.termux/files/usr | |
| A=`uname -m` | |
| echo "> Termux for SailfishOS..." | |
| if [ ! -f bootstrap-$A.zip ]; then | |
| echo "> Downloading Termux bootstrap for $A..." | |
| curl -o bootstrap-$A.zip https://termux.net/bootstrap/bootstrap-$A.zip |
This file contains hidden or 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
| Hi, | |
| Please find the latest report on new defect(s) introduced to radare2 found with Coverity Scan. | |
| 20 new defect(s) introduced to radare2 found with Coverity Scan. | |
| 8 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent build analyzed by Coverity Scan. | |
| New defect(s) Reported-by: Coverity Scan | |
| Showing 20 of 20 defect(s) |
This file contains hidden or 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
| const readString = Memory.readUtf8String; | |
| var readU32 = Memory.readU32; | |
| var pid = ptr(0); | |
| const SIGSTOP = 17; | |
| const kill = new NativeFunction( | |
| Module.findExportByName(null, 'kill'), | |
| 'int', [ | |
| 'int', |
This file contains hidden or 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
| $ RUST_BACKTRACE=1 ./servonk run glutin | |
| ../../target/debug/servo --resources-path /Users/pancake/prg/servonk/platform/glutin/support/scripts/../../../shared/resources --resolution 720x1280 --user-agent Mozilla/5.0 (Mobile; rv:60.0) Servo/1.0 Firefox/60.0 -M http://localhost:8000/system/index.html | |
| assertion failed: mach_sys::mach_port_mod_refs(mach_task_self(), self.port, | |
| MACH_PORT_RIGHT_SEND, 1) == KERN_SUCCESS (thread Constellation, at /Users/pancake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipc-channel-0.10.0/src/platform/macos/mod.rs:336) | |
| stack backtrace: | |
| 0: 0x1079cc474 - backtrace::backtrace::trace::hf902894808ae4113 | |
| at /Users/pancake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.6/src/backtrace/mod.rs:42 | |
| 1: 0x1079c612c - backtrace::capture::Backtrace::new_unresolved::h28613d9797601b68 | |
| at /Users/pancake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.6/src/capture.rs:88 | |
| 2 |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # | |
| # Script to parse the .gnu_debugdata section of ELF binaries | |
| # Usage: | |
| # $ r2 -i debugdata.py bd64 | |
| # The script can be also executed from the r2 shell | |
| # $ . debugdata.py | |
| # | |
| import r2pipe |
This file contains hidden or 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
| module main | |
| import os | |
| import encoding.hex | |
| struct AsmLabel { | |
| name string | |
| off int | |
| } |
This file contains hidden or 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
| if [ -f ~/.vim/autoload/plug.vim ]; then | |
| echo "fzf-vim already installed." | |
| else | |
| curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
| https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| cat >> ~/.vimrc <<EOF | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
| call plug#end() | |
| command! -bang -nargs=* GGrep |
OlderNewer