RAFIND2(1) BSD General Commands Manual RAFIND2(1)NAME
rafind2 -- Advanced commandline hexadecimal editor
SYNOPSIS
rafind2 [-zXnrhv] [-b size] [-f from] [-t to] [-[m|s|e] str] [-x hex] file
DESCRIPTION
rafind2 is a program to find byte patterns into files
The options are:
-z Search for zero-terminated strings
-s str Search for a specific string
-e regex Search for a regular expression string matches
-x hex Search for an hexpair string
-m mask Set binary mask to be applied
-f from Specify the source adddress
-t to Specify the target adddress
-X Display hexdump of search results
-n Do not stop the search when a read error occurs
-r Show output in radare commands
-b size Define block size
-h Show help message
-v Print version and exit
SEE ALSO radare2(1), rahash2(1), rabin2(1), ranal2(1), radiff2(1), rasm2(1), ragg2(1), rarun2(1), rax2(1),
AUTHORS
pancake <pancake@nopcode.org>, nibble <nibble@develsec.org>
BSD Oct 18, 2011 BSD
Check Out this Related Man Page
RADIFF2(1) BSD General Commands Manual RADIFF2(1)NAME
radiff2 -- unified binary diffing utility
SYNOPSIS
radiff2 [-cCOdrspvh] [-t 0-100] [-g sym] file1 file2
DESCRIPTION
radiff2 implements many binary diffing algorithms for data and code.
-c Count number of differences.
-C Graphdiff code instead of data
-O Do code diffing with all bytes instead of just the fixed opcode bytes
-t 0-100 Choose matching threshold for binary code diffing
-d Use delta diffing (slower).
-g sym Graph diff output of given symbol
-r Output in radare commands as a binary patch.
-s Calculate text distance from two files.
-p Use physical addressing (io.va=0)
-v Show version information.
-h Show usage help message.
SEE ALSO radare2(1), rafind2(1), rahash2(1), rabin2(1), ranal2(1), rasm2(1), ragg2(1), rarun2(1), rax2(1),
AUTHORS
pancake <pancake@nopcode.org>, nibble <nibble@develsec.org>
BSD Oct 20, 2011 BSD
Hi,
I have a file with the following contents:
COMPANY ABCD
TRUCKER JOE SMITH
TRUCK 456
PLATE A12345678
TRUCKER BILL JONES
TRUCK 789
PLATE B7894561
I need to create a script or search command that will search for this string '789' in the file. This string is unique and only... (7 Replies)
Hi, guys. I have one question:
I need to search for a string in a file, and then extract another string from the file and assign it to a variable.
For example:
the contents of the file (group) is below:
...
ftp:x:23:
mail:x:34
...
testing:x:2001
sales:x:2002
development:x:2003
...... (6 Replies)
How do I search for files that dont contain a certain string? I am currently trying
find ./logs -size +1c -exec grep -l 'Process Complete' {} \; -exec ls -l {} \; >
$TOD
Which gives me files that are reater han 0 file size and contain the string 'Process complete' but I want files that DONT... (13 Replies)
Hi All,
I have almost 1000+ files and I want to search specific pattern. Looking forwarded your input. Pls note that need to ignore words in between /* */
Search for: "insert into xyz" (Which procedure contain all 3).
Expected output:
procedure test1
procedure test2
procedure test3
File... (12 Replies)
Hi,
I wish to find all lines that contain a specific search word, and then do few string operations on that line. The idea is to "fix" the file which has been moved from windows to unix.
Using unix - Sun Solaris
Test input ("t2.sas")
statement1
statement2
libname yahoo ... (6 Replies)
I need to search for a particular string. This string might be present in many files. The directory in which I am present has more than one subdirectories. Hence, the search should check in all the subdirectories and all the corresponding files and give a list of files which have the particular... (5 Replies)
Hi,
I have following requirement. Pls suggest.
To search a string in a file which is combination of character and number(always 9 digit, but numeric). if found then caputure the exit return code as 0 else 1 , if 0 then next job can be triggerd. If exit code is 1, should return a failure... (10 Replies)
Is there hopefully a way to search for an exact string in Man Pages? I know if I want to search for anything containing -c I can just do this.
/-c
How would I search for "-c"? I want only "-c" to show up. So I tried this.
/"-c"
It took me literally and looked for the quotes also. (13 Replies)
i have one file, i am doing 'vi Filename' now i want to search for particular string and i want to know how many times that string occurs in whole file (5 Replies)
Hi colleagues,
I need to search one file in all dierctories, i have O.S. AIX 5.3, my file began with cc, the others caracters i unknow.
Then i can to search one string in file in all dierctories.
Thank you for advanced. (8 Replies)
I have a file with
<suit:run date="Trump Tue 06/19/2012 11:41 AM EDT" machine="garg-ln" build="19921" level="beta" release="6.1.5" os="Linux">
Need to find word "build" then
extract build number, which is 19921 also
release number, which is 6.1.5 then
concatenate them to one variable as... (6 Replies)
Hi,
I have a text file the contents are like this
now i want to search patterns Z , Z etc and count the occurrence of such patterns, after Z value can be any random digits, please help me it is urgent...
output like this
Z .............>5
Z ............>8 (9 Replies)
Hi All,
I hope somebody would be able to help me.
I would need to search a string coming from a file, example file.txt:
dog
cat
goat
horse
fish
For every string, I would need to know if there are any files inside a directory(recursively) that contains the string regardless of case.... (9 Replies)