RARUN2(1) BSD General Commands Manual RARUN2(1)NAME
rarun2 -- radare2 utility to run programs in exotic environments
SYNOPSIS
rarun2 [[script.rr2]]
DESCRIPTION
This program is used as a launcher for running programs with different environment, arguments, permissions, directories and overridden
default filedescriptors.
The program just accepts a single argument which is the filename of the configuration file to run the program.
It is useful when you have to run a program using long arguments or pass long data to stdin or things like that usually required for exploit-
ing crackmes :)
DIRECTIVES
The rr2 (rarun2) configuration file accepts the following directives, described as key=value entries and comments defined as lines starting
with '#'.
program path to program to be executed
stdout select file to replace stdout file descriptor
stdin select file to read data from stdin
input set string to be passed to the program via stdin
chdir change directory before executing the program
chroot run the program in chroot. requires some previous setup
preload preload a library (not supported on Windows, only linux,osx,bsd)
setuid set process uid
seteuid set effective process uid
setgid set process group id
setegid set effective process group id
setenv set value for given environment variable
arg[0-3] set value for argument N passed to the program
EXAMPLE
$ cat foo.rr2
#!/usr/bin/rarun2
program=./pp400
arg0=10
stdin=foo.txt
chdir=/tmp
#chroot=.
./foo.rr2
SEE ALSO radare2(1), rahash2(1), rafind2(1), rabin2(1), ranal2(1), radiff2(1), ragg2(1), rasm2(1),
AUTHORS
pancake <pancake@nopcode.org>
BSD Oct 11, 2011 BSD
Check Out this Related Man Page
RAX2(1) BSD General Commands Manual RAX2(1)NAME
rax2 -- radare base converter
SYNOPSIS
rax2 [-ebsSvxkh] [[value] ...]
DESCRIPTION
This command is part of the radare project.
This command allows you to convert values between positive and negative integer, float octal, binary and hexadecimal values.
OPTIONS -e Swap endian.
-b Convert from binary string to caracter (rax2 -b 01000101)
-s Convert from hex string to caracter (rax2 -s 43 4a 50)
-S Convert from hex string to caracter (rax2 -S C J P)
-v Show program version
-x Convert a string into a hash
-k Keep de same base as the input data
-h Show usage help message
USAGE
Available variable types are:
int -> hex rax2 10
hex -> int rax2 0xa
-int -> hex rax2 -77
-hex -> int rax2 0xffffffb3
int -> bin rax2 b30
bin -> int rax2 1010d
float -> hex rax2 3.33f
hex -> float rax2 Fx40551ed8
oct -> hex rax2 35o
hex -> oct rax2 Ox12 (O is a letter)
bin -> hex rax2 1100011b
hex -> bin rax2 Bx63
With no arguments, rax2 reads values from stdin. You can pass one or more values as arguments.
$ rax2 33 0x41 0101b
0x21
65
0x5
You can do 'unpack' hexpair encoded strings easily.
$ rax2 -s 41 42 43
ABC
And it supports some math operations.
$ rax2
0x5*101b+5
30
It is very useful tool for scripting, so you can read floating point values, or get the integer offset of a jump or a stack delta when ana-
lyzing programs.
SEE ALSO radare2(1), rahash2(1), rafind2(1), rabin2(1), ranal2(1), radiff2(1), ragg2(1), rarun2(1), rasm2(1),
AUTHORS
pancake <pancake@nopcode.org>, nibble <nibble@develsec.org>
BSD Mar 12, 2010 BSD
I have a program that will export my data to a single file, but it assigns a file name that is overridden every time I run the program. I need to change the file name to have a sequential number in the filename.
How do I rename a file so that the filename contains the system date and time. I want... (5 Replies)
I'm currently looking for an emulation program that would allow me to open and run osx app.s and programs on a windows xp based system.
if not is there a unix/linux/lindows program that may do the same? (3 Replies)
hi,
how does a program know whether some data are available from stdin?
I would like to make a program which could read its data from stdin
and _if_there_is_nothing_at_stdin_ from a file which name is given
as an argument. If there is nothing in stdin and no filename is given as
argument,... (2 Replies)
I have looked into it on the internet elsewhere, and I cannot find out how to get a computer to run "UNIX" besided linux or bsd. Is bsd usualy the kind of unix that people run? Can a pc run unix? If so, how do you get it?
Thanks in advance. (3 Replies)
Hi,
I recently installed FreeBSD 6.0, and am now trying to run my newly created sh scripts, that I ftp'd over from my works Data General - Unix server, I thought they would at least sumwhat/part run, but I can'y even get my basic menu to run and don't know why, can anyone help me by throwing... (6 Replies)
Hi,
I'm having trouble with my script. I have to select different choices without any interaction from a menu that looks like :
a - xxxxxxxxxxxxxx
b - xxxxxxxxxxxxxx
c - xxxxxxxxxxxxxx
d - xxxxxxxxxxxxxx
I tried things like :
echo "a" >&0
read < echo "a"
but none worked. Any... (4 Replies)
Hi,
Program A: uses pipe()
I am able to read the stdout of PROGAM B (stdout got through system() command) into PROGRAM A using:
* child
-> dup2(fd, STDOUT_FILENO);
-> execl("/path/PROGRAM B", "PROGRAM B", NULL);
* parent
-> char line;
-> read(fd, line, 100);
Question:
---------... (1 Reply)
My expect script is not stopping to accept stdin
puts "Hey dude, how old might you be?"
gets stdin Age
While running this the script does not wait for user response. What could be the problem?
Pls help (0 Replies)
Hi,
Program A: uses pipe()
I am able to read the stdout of PROGAM B (stdout got through system() command) into PROGRAM A using:
* child
-> dup2(fd, STDOUT_FILENO);
-> execl("/path/PROGRAM B", "PROGRAM B", NULL);
* parent
-> char line;
-> read(fd, line, 100);
Question:
---------... (3 Replies)
Hi all
I've run into a snag in a program of mine where part of what I entered in at the start of run-time, instead of the current value within printf() is being printed out.
After failing with fflush() and setbuf(), I tried the following approach
void BufferFlusher()
{
int in=0;... (9 Replies)
Bonjour,
Mon application en C sous linux tourne en redirigeant stdin vers un fichier.
Exemple; $appli1 <file1.
PB: Je voudrais temporairement redonner la main au user sur le clavier.
Alors je pensais ajouter system("appli2"); dans appli1.
Dans son main() , appli2() fait seulement un... (1 Reply)
Running on AIX 5.3L.
I have a program "foo" written in Fortran that requires 3 levels of inputs from stdin (command prompt).
> foo
Enter Input 1: a
Enter Input 2: b
Enter Input 3: c
running foo
success!
>
How do I get a shell script to run this automatically?
> echo "a" | foo... (2 Replies)