quick way for finding some web logins via curl and bash 06-04-2020, 12:05 PM
#1
a simple command can allow you to search for web logins to exploit...
above code will scan 110.168.29.111-120 for web interfaces, this range has a lot of firewalls, cameras and other security systems.
![[Image: rtVGprz.png]](https://i.imgur.com/rtVGprz.png)
I will write a longer tutorial about automated attacks on web logins against whole ranges of IP's later but I thought I would put a little bit out there for now.
![[Image: C9yCgKb.png]](https://i.imgur.com/C9yCgKb.png)
the zyxel usg40 is a firewall. and here are some more from that range real quick...
110.168.29.123 - security camera
110.168.29.145 - router
110.168.29.164 - security camera
Code:
for i in {111..120}; do curl -m 10 -v -I http://110.168.29.$i; doneabove code will scan 110.168.29.111-120 for web interfaces, this range has a lot of firewalls, cameras and other security systems.
![[Image: rtVGprz.png]](https://i.imgur.com/rtVGprz.png)
I will write a longer tutorial about automated attacks on web logins against whole ranges of IP's later but I thought I would put a little bit out there for now.
![[Image: C9yCgKb.png]](https://i.imgur.com/C9yCgKb.png)
the zyxel usg40 is a firewall. and here are some more from that range real quick...
110.168.29.123 - security camera
110.168.29.145 - router
110.168.29.164 - security camera
(This post was last modified: 06-04-2020, 12:18 PM by sunjester.)


![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)

