Sinisterly
quick way for finding some web logins via curl and bash - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Coding (https://sinister.ly/Forum-Coding--71)
+--- Thread: quick way for finding some web logins via curl and bash (/Thread-quick-way-for-finding-some-web-logins-via-curl-and-bash)



quick way for finding some web logins via curl and bash - sunjester - 06-04-2020

a simple command can allow you to search for web logins to exploit...

Code:
for i in {111..120}; do curl -m 10 -v -I http://110.168.29.$i; done

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]

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]

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


RE: quick way for finding some web logins via curl and bash - Stratus - 06-29-2020

Sweet little one liner! Thanks!