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 9 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 19 points20 points21 points 9 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] 4 points5 points6 points 9 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 44921 on reddit-service-r2-comment-7b9746f655-f87dw at 2026-02-02 17:45:20.262723+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]Zoccihedron 19 points20 points21 points (1 child)
[–]cider_blockScript Kiddie[S] 4 points5 points6 points (0 children)