我编写代码来从xml文件中读取和打开myapp配置。 代码尝试解析文件中的关键元素,如果它们不存在则创建它们:
static xmlDocPtr configsave_open( const char *config_filename )
{
xmlDocPtr doc;
xmlNodePtr top;
int create_file = 0;
doc = xmlParseFile( config_filename );
......................................
xmlKeepBlanksDefault( 0 );
if( create_file ) {
char *temp = strdup( config_filename ); /* <-- crashed with SIGSEGV in __GI___strdup() */
if( ! temp ) {
fprintf( stderr, "strdup failed for config_filename %s\n", config_filename );
xmlFreeDoc( doc );
return 0;
}
mkdir_and_force_owner( dirname( temp ), getuid(), getgid() );
free( temp );
}
......................................
return doc;
}
我写测试用例:
#!/bin/bash
# seed id: 16154
DIR="$( cd "$( dirname "$0" )" && pwd )"
GDB=
if [ "$1" = "-g" ]
then
GDB="gdb --args"
fi
env -i \
MALLOC_CHECK_=0 \
$GDB \
/usr/bin/myapp \
"`cat $DIR/argv_1.symb`" \
"`cat $DIR/argv_2.symb`" \
\
< "$DIR/file___dev__stdin.symb"
exit_code=$?
exit $exit_code
其中argv_2.symb文件包含:
'`
和文件__ dev _stdin.symb容器:
AAAAAAAAAAAAAAAAAAAAAAAA
崩溃输出:
I/O warning : failed to load external entity "NULL"
./exploit.sh: line 19: 7175 Segmentation fault
(core dumped)
env -i MALLOC_CHECK_=0 $GDB /usr/bin/myapp "`cat $DIR/argv_1.symb`" "`cat $DIR/argv_2.symb`" < "$DIR/file___dev__stdin.symb"
尝试使用configfile args运行myapp时出现基本崩溃:
/usr/bin/myapp --configfile '`
欢迎任何解决此问题的帮助
答案 0 :(得分:1)
我认为此处config_filename
可能是NULL
,特别是考虑到此消息:
I/O warning : failed to load external entity "NULL"
如果情况并非如此,我们可能需要更多背景信息。