We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
execute 'find' in libc-database,output like this: 'ubuntu-xenial-amd64-libc6-i386 (id libc6-i386_2.23-0ubuntu10_amd64)'
utils.libc_search: libc_name = '{}.so'.format(re.findall(r'\((.*?)\)',result[choice])[0]) the regex pattern will return: 'id libc6-i386_2.23-0ubuntu10_amd64' join to libc-database path: libc_path = os.path.join(DB, libc_name) libc_path = 'libc-database-path/id libc6-i386_2.23-0ubuntu10_amd64'
libc_name = '{}.so'.format(re.findall(r'\((.*?)\)',result[choice])[0])
libc_path = os.path.join(DB, libc_name)
it will issue 'no folder or file ERROR'
FIX: libc_name = '{}.so'.format(re.findall(r'\(id (.*?)\)',result[choice])[0])
libc_name = '{}.so'.format(re.findall(r'\(id (.*?)\)',result[choice])[0])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
execute 'find' in libc-database,output like this:
'ubuntu-xenial-amd64-libc6-i386 (id libc6-i386_2.23-0ubuntu10_amd64)'
utils.libc_search:
libc_name = '{}.so'.format(re.findall(r'\((.*?)\)',result[choice])[0])
the regex pattern will return:
'id libc6-i386_2.23-0ubuntu10_amd64'
join to libc-database path:
libc_path = os.path.join(DB, libc_name)
libc_path = 'libc-database-path/id libc6-i386_2.23-0ubuntu10_amd64'
it will issue 'no folder or file ERROR'
FIX:
libc_name = '{}.so'.format(re.findall(r'\(id (.*?)\)',result[choice])[0])
The text was updated successfully, but these errors were encountered: