I have a small program where I wish to pass shellcode as argument. In the shellcode, there is a necessity to pass \\x00. I tried the following command:
./pro
Not at all. Unix uses C-style strings for the arguments a command is invoked with, and they are NUL-terminated character sequences.
What you can do is to rewrite your program (or find an invocation variant) to accept the parameter in its standard input. NUL bytes work just fine there and are, in fact, widely used, typically as separators for file names, since they are pretty much the only thing a file name can never contain. See find
's -print0
switch and xarg
's switch -0
for the arguably most popular examples.