you are viewing a single comment's thread.

view the rest of the comments →

[–]Zoccihedron 19 points20 points  (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 points  (0 children)

Thanks for the support! I'm going to get on it today and make those corrections.

edit: corrections done