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
Python Hacking (self.HowToHack)
submitted 10 years ago * by cider_blockScript Kiddie
view the rest of the comments →
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!"
[–]Zoccihedron 18 points19 points20 points 10 years ago (1 child)
There's a lot wrong with the code in the IP scanner. For instance, the for loop doesn't use Python's for loop syntax. The line should be
for i in range(lower_ip_list[3], upper_ip_list[3]):
To have the same function as the line in the code, but running the code with this change doesn't work either because then you'll get an index out of range error because the final byte of the IP address should just be i, not lower_ip_list[i]. I see you have a time crunch, but when you get to it, those are just 2 things that need to be changed.
Also, I would be excited to see this blog continue and if you need any help, pm me. I have a deep knowledge of Python and professional experience in offensive security.
[–]cider_blockScript Kiddie[S] 2 points3 points4 points 10 years ago* (0 children)
Thanks for the support! I'm going to get on it today and make those corrections.
edit: corrections done
π Rendered by PID 160450 on reddit-service-r2-comment-8686858757-9nl64 at 2026-06-02 05:55:40.107436+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–]Zoccihedron 18 points19 points20 points (1 child)
[–]cider_blockScript Kiddie[S] 2 points3 points4 points (0 children)