Skip to content

Commit f481398

Browse files
committed
Hardcode order: Fixed.
1 parent 613e5c2 commit f481398

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bintut/courses/exploits.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ def get_libc_path(self):
397397
'/usr/lib/libc.so.6',
398398
'/lib/i386-linux-gnu/i686/cmov/libc.so.6']
399399
else:
400-
maybe = ['/usr/lib/libc.so.6',
401-
'/usr/lib64/libc.so.6',
400+
maybe = ['/usr/lib64/libc.so.6',
401+
'/usr/lib/libc.so.6',
402402
'/lib/x86_64-linux-gnu/libc.so.6']
403403
for path in maybe:
404404
if isfile(path):

0 commit comments

Comments
 (0)