Simple fortunes fixes

This commit is contained in:
dialeth 2014-08-04 04:56:45 -07:00 committed by jvoisin
parent 689d29e444
commit 109406d799

View file

@ -1,10 +1,10 @@
Do you want to perform more than one search at a time? '> /k0 keyword1', '> /k1 keyword2' and '> /r 0-1'
Isn't your disassembly pretty enought? Try changing values with 'e asm.'
Did you setup your ~/.radare2rc today?
Disassembly not pretty enough? Try changing the values with 'e asm.'
Have you setup your ~/.radare2rc today?
You can mark an offset in visual mode with the cursor and the ',' key. Later press '.' to go back
You can debug a program from the graph view (ag command) using standard radare2 commands
Use the '[' and ']' keys in visual mode to adjust the screen width (scr.width)
Choose your architecture by typing: 'e asm.arch=ppc' (or arm, java, m68k, intel, intel16 or intel64)
You can debug a program from the graph view ('ag') using standard radare2 commands
Use the '[' and ']' keys in visual mode to adjust the screen width
Choose your architecture by typing: 'e asm.arch=<arch>'
Move between your search hits in visual mode using the 'f' and 'F' keys
Save your projects with 'Ps <project-filename>' and restore then with 'Po <project-filename>'
Everytime you run radare2, a random file is removed :)
@ -12,45 +12,45 @@ RADARE CUMS WITH ABSOLUTELY NO WARRANTY
Enable asm.trace to see the tracing information inside the disassembly
Change the registers of the child process in this way: 'dr eax=0x333'
Deltify your life with radare2
Check your IO plugins with r2 -L
Check your IO plugins with 'r2 -L'
Change the size of the file with the 'r' (resize) command
Calculate checksums for the current block with the commands starting with '#' (#md5, #crc32, #all, ..)
Use +,-,*,/ to change the size of the block
Change the block size with 'b <block-size>' In visual mode you can also enter radare2 command pressing the ':' key (like vi does)
If you want to open the file in read-write mode use -w flag or -e cfg.write=true
Change the block size with 'b <block-size>'. In visual mode you can also enter radare2 command pressing the ':' key (like vi does)
If you want to open the file in read-write mode, invoke r2 with '-w'
Print the contents of the current block with the 'p' command
Command layout is: <repeat><command><bytes>@<offset>.\ For example: 3x20@0x33 will show 3 hexdumps of 20 bytes at 0x33
Command layout is: <repeat><command><bytes>@<offset>. For example: 3x20@0x33 will show 3 hexdumps of 20 bytes at 0x33
Press 'c' in visual mode to toggle the cursor mode
Press 'C' in visual mode to toggle colors
You can "copy/paste" bytes using the cursor in visual mode 'c' and using the 'y' and 'Y' keys
Move around the bytes with hjkl! Arrow keys are not portable and are less productive to use
You can 'copy/paste' bytes using the cursor in visual mode 'c' and using the 'y' and 'Y' keys
Move around the bytes with h,j,k,l! Arrow keys are neither portable nor efficient
Seek at relative offsets with 's +<offset>' or 's -<offset>'
Invert the block bytes using the 'I' key in visual mode
Switch between print modes using the 'p' and 'P' keys in visual mode
In soviet russia radare2 debugs you!
In soviet russia, radare2 debugs you!
Add comments using the ';' key in visual mode or the 'C' command from the radare2 shell
Assemble opcodes with the 'a' and 'A' keys in visual mode which are hooks for the wa and wA commands
Find expanded AES keys in memory with /Ca command
Find wide-char strings with /w <string> command
Enable ascii-art jump lines in disassembly with asm.lines. asm.linesout and asm.linestyle may interest you too
Assemble opcodes with the 'a' and 'A' keys in visual mode, which are bindings to the 'wa' and 'wA' commands
Find expanded AES keys in memory with '/Ca'
Find wide-char strings with the '/w <string>' command
Enable ascii-art jump lines in disassembly by setting 'e asm.lines=true'. asm.linesout and asm.linestyle may interest you as well
Control the signal handlers of the child process with the 'dk' command
Get a free shell with 'ragg2 -i exec -x'
Interpret your own radare2 scripts with '. <path-to-your-script>'. Similar to the bash source alias command.
Most of commands accept an '?' as suffix. Use it to understand how they work :)
Interpret radare2 scripts with '. <path-to-script>'. Similar to the bash source alias command.
Most of commands accept '?' as a suffix. Use it to understand how they work :)
Find hexpairs with '/x a0 cc 33'
Walk inside your seek history with the 'u' command (undo), and 'U' for redo
Step through your seek history with the commands 'u' (undo) and 'U' (redo)
Use hasher to calculate hashes of portion blocks of a file
Use zoom.byte=entropy and press 'z' in visual mode to zoom out to see the entropy of the whole file
Use zoom.byte=printable in zoom mode (z key in visual mode) to find strings
Set colors to your screen with 'e scr.color=true'
Trace the register changes when debugging with trace.cmtregs
Use 'zoom.byte=printable' in zoom mode ('z' in Visual mode) to find strings
Set color to your screen with 'e scr.color=true'
Trace register changes while debugging with 'e trace.cmtregs=true'
Move the comments to the right changing their margin with asm.cmtmargin
Execute a command on the visual prompt with cmd.vprompt
Reduce the delta where flag resolving by address is used with cfg.delta
Disable these messages with 'e cfg.fortunes = false' in your ~/.radare2rc
Show offsets in graphs with 'e graph.offset = true'
Follow a flag in disassembly view (avoids to disasemble out of the visibility of the flag) with asm.follow
Execute a command every time a breakpoint is hitted with 'e cmd.bp = !my-program'
Execute a command every time a breakpoint is hit with 'e cmd.bp = !my-program'
Disassemble in intel syntax with 'e asm.syntax = intel'.
Change the UID of the debugged process with child.uid (requires root)
Enable full backtrace with dbg.fullbt
@ -61,19 +61,19 @@ Control the height of the terminal on serial consoles with e scr.height
Use e file.id=true and e file.flag=true in your ~/.radare2rc to get symbols, strings, .. when loading
Emulate the base address of a file with e file.baddr.
Bindiff two files with '$ bdiff /bin/true /bin/false'
Execute commands on a temporally offset appending '@ offset' to your command.
Execute commands on a temporary offset by appending '@ offset' to your command.
Temporally drop the verbosity prefixing the commands with ':'
Change the graph block definition with graph.callblocks, graph.jmpblocks, graph.flagblocks
Use the '<' and '>' keys in visual cursor mode (V->c) to folder selected bytes.
Use scr.accel to browse the file faster!
I love the smell of bugs in the morning.
Use the 'pR' command to see the source line related to the current seek
Analyze socket connections with the socket plugin: $ radare2 socket://www.foo.com:80. Use 'w' to send data
Analyze socket connections with the socket plugin: 'radare2 socket://www.foo.com:80'. Use 'w' to send data
I like to suck nibbles and make hex.
I'm in your source securing your bits.
radare2 contributes to the One Byte Per Child fundation.
Setup dbg.fpregs to true to visualize the fpu registers in the debugger view.
To debug a program you can do dbg://${path-to-program} or use -d ${path..}
To debug a program, you can call r2 with 'dbg://<path-to-program>' or '-d <path..>'
3nl4r9e y0\/r r4d4r3
I did it for the pwnz.
If you send the program you are debugging to 15 friends before 143 minutes and then step three times on the same opcode you will get the name of the person who loves you.
@ -81,7 +81,7 @@ To remove this message, put `dbxenv suppress_startup_message 7.5' in your .dbxrc
Heisenbug: A bug that disappears or alters its behavior when one attempts to probe or isolate it.
radare2 is for lulzhats
Use 'e' and 't' in Visual mode to edit configuration and track flags.
Use rabin2 -rios to get the import/export/other symbols of any binary.
Use 'rabin2 -rios' to get the import/export/other symbols of any binary.
Remember to maintain your ~/.radare_history
Microloft Visual Radare.NET 2008. Now OOXML Powered!
Enjoy the 'two girls one backup' viral video.
@ -92,25 +92,25 @@ Excellent; we can attack in any direction!
Better than an eel in the ass.
radare2 build farm beats the facebook one.
Thank you for using radare2. Have a nice night!
Your r2 was built 20h ago. TOO OLD
Enable the PAGER with e scr.pager=less -R
Use e asm.offset=true to show offsets as in the 16bit segment addressing mode.
Your r2 was built 20h ago. TOO OLD!
Enable the PAGER with 'e scr.pager=less -R'
Use 'e asm.offset=true' to show offsets in 16bit segment addressing mode.
The '?' command can be used to evaluate math expressions. Like this: '? (0x34+22)*4'
Use radare2! lemons included!
Are you fucking coding me?
rax2 -s 20e296b20ae296b220e296b20a
Connection lost with the license server, your r2 session will terminate soon.
I swear i didn't knew she had only 8bits!
Set e bin.dwarf=true to load dwarf information at startup.
Rename a function using the 'afr newname @ offset' command.
You can redefine descriptive commands in the hud file and using the V_ command.
Use -j in rabin2 to get the information of the binary in JSON format.
Set 'e bin.dwarf=true' to load dwarf information at startup.
Rename a function using the 'afr <newname> @ <offset>' command.
You can redefine descriptive commands in the hud file and using the 'V_' command.
Pass '-j' to rabin2 to get the information of the binary in JSON format.
This is amazing...
Use rarun2 to launch your programs with a predefined environment.
You are probably using an old version of r2, go checkout the git!
Run your own r2 scripts in awk using the r2awk program.
I love gradients.
Use -e bin.strings=false to disable search for strings when loading the binary.
Use '-e bin.strings=false' to disable automatic string search when loading the binary.
Wait a moment..
Don't do this.
No such file or directory.
@ -122,7 +122,7 @@ To enter into the visual mode type 'V' in the prompt and hit enter.
Press any key to continue...
Ilo ni li pona li pali e lipu. mi wile e ni: sina kama jo e musi
radare2 for FideOS, now with extra potato
Your project name should contain an uppercase letter, 8 vowels, some numbers and the 5 first numbers of your private bitcoin key.
Your project name should contain an uppercase letter, 8 vowels, some numbers, and the first 5 numbers of your private bitcoin key.
This computer has gone to sleep.
Did you ever ordered a pizza using radare2?
I thought we were friends. :_
@ -136,7 +136,7 @@ Sick my duck!
Duck my sick!
Use 'ec' to choose the colors for your disassembly palette
Here be dragons.
Trust no one, either a zero. Both lie.
Trust no one, nor a zero. Both lie.
EIP = 0x41414141
/dev/brain: No such file or directory.
Virtual machines are great, but you lose the ability to kick the hardware.
@ -157,7 +157,7 @@ This software comes with no brain included. Please use your own.
rm: /: Permission denied.
That's embarrassing.
Connection with license server failed.
In soviet Afghanistan you debug radare2!
In soviet Afghanistan, you debug radare2!
You should know that ptracing binaries younger than 18yo is illegal.
Wow, my cat knows radare2 hotkeys better than me!
Documentation is for weak people.
@ -184,7 +184,7 @@ This should be documented, since it's not that obvious.
It's working! Look at the door!
This is an unacceptable milion year dungeon.
The Hard ROP Cafe
Please remove pregnant women, pregnant children and pregnant pets from the monitor.
Please remove pregnant women, pregnant children, and pregnant pets from the monitor.
Fill the bug. Fill it with love. With the creamy and hot sauce of love.
If you need to escape from hell, 'e asm.arch = malbolge' might help you.
Wait a minute! I found a bug, self-fixing... OK
@ -207,9 +207,9 @@ Experts agree, security holes suck, and we fixed some of them!
r2 your penis
This is just an existentialist experiment.
Nothing to see here. Move along.
Select your character: RBin Wizard, Master Anal Paladin or Assembly Wizard
Select your character: RBin Wizard, Master Anal Paladin, or Assembly Wizard
I accidently radared my filesystem today.
No fix no sleep
No fix, no sleep
You see it, you fix it!
V is for Visual
r2-goverity: found corruption - please eliminate!
@ -219,3 +219,7 @@ Fuck you, fuck you in the mouth, with a chair!
Polish reversers blame git
vm is like a small cow in ascii
Do you want to print 333.5K chars? (y/N)
Now with more better English!
:(){ :|:& };:
All your base are belong to r2
Ask not what r2 can do for you - ask what you can do for r2