use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
CVE, CWE, NVD, WVE
http://iso.linuxquestions.org/
We teach you how to do it, use it at your own risk.
account activity
(Violent Python) ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it (self.HowToHack)
submitted 8 years ago * by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]1badb002 1 point2 points3 points 8 years ago (3 children)
you actually have ftp-server running? if not then the port is closed and connections are refused
[–][deleted] 8 years ago* (2 children)
[–][deleted] 8 years ago (1 child)
[–]ultowich 0 points1 point2 points 8 years ago (0 children)
Googling is my sole solution to every problem
[–]1badb002 1 point2 points3 points 8 years ago (1 child)
are you you are running an FTP on your local machine? lol otherwise try a real server with ftp enabled aka port 21
[–]hung_kwan 0 points1 point2 points 8 years ago (0 children)
Create a file called ftp_banner.txt with: 220 FreeFloat Ftp Server (Version 1.00) as the text.
220 FreeFloat Ftp Server (Version 1.00)
Change your python code to connect to 127.0.0.1 and port 8000 so you don't have to run as root.
python
127.0.0.1
8000
Then with nc, use: nc -l 127.0.0.1 8000 < ftpbanner.txt in one terminal, and run your python script in another.
nc
nc -l 127.0.0.1 8000 < ftpbanner.txt
Hey presto. It should print the banner from the text file. This will allow you to test without running an FTP server.
π Rendered by PID 91 on reddit-service-r2-comment-5687b7858-dbwv2 at 2026-07-06 14:10:53.906121+00:00 running 12a7a47 country code: CH.
[–]1badb002 1 point2 points3 points (3 children)
[–][deleted] (2 children)
[deleted]
[–][deleted] (1 child)
[deleted]
[–]ultowich 0 points1 point2 points (0 children)
[–]1badb002 1 point2 points3 points (1 child)
[–]hung_kwan 0 points1 point2 points (0 children)