Posts by Joao Vitor • 11 points
5 posts
-
0
votes1
answer33
viewsQ: A (CTRL + A) in telnet client
I’m making a telnet client in python and I need to send a code to another machine but the code needs to put a Ctrl + To (CODE) but when I put ^A (code) does not work, heeelp me serv = raw_input("[+]…
-
0
votes1
answer31
viewsQ: How to make a request and search for a string
I wonder how I give a request and look for a string, example: *www.site.com/index.php? id=' (Error SQL) (find the error) I’m just having trouble with it since it’s almost all set, so follow the…
-
-2
votes1
answer36
viewsQ: help with request
I am writing a subdomain scan and did the following code (I’m sorry for making you cry with such): import requests while True: url = raw_input("url: ") lista = ['blog', 'ftp', 'cpanel', 'intranet']…
-
0
votes2
answers293
viewsQ: How do I display if I can ping a machine without displaying the textual ping pollution itself?
My code is printing ping output (that polluted screen), but I wanted to print only the default "{ip} ta on". How you currently print: PING 192.168.2.1 (192.168.2.1) 56(84) bytes of data. 64 bytes…
pythonasked Joao Vitor 11 -
0
votes1
answer939
viewsQ: Discover hosts from the network
When trying to create a script on the subject I got some questions about the script below! The question is, how am I going to do the "for i in 100" so that it will ping the ips, like…