Ready to Start Your Career?

By: anilbaranyelken
May 8, 2018
Tulpar - Python Web Application Vulnerability Scanner + Telnetlib

By: anilbaranyelken
May 8, 2018

- Sql Injection (GET Method)
- XSS (GET Method)
- Crawl
- E-mail Disclosure
- Credit Card Disclosure
- Whois
- Command Injection (GET Method)
- Directory Traversal (GET Method)
- File Include (GET Method)
- Server Information
- Technology Information
- X-Content-Type Check
- X-XSS-Protection Check
- TCP Port Scanner
- robots.txt Check
- URL Encode
- Certification Information
- Available Methods
- Cyber Threat Intelligence
- IP2Location
- File Input Available Check
- Encode cyberthreatintelligence command
- Injection directory
- Traversal file
- Include header
- Check certificate methodIP2Location FileInputAvailableweb_URL URL
*Bonus: Telnetlib Port ScannerWe will write a port scanner with python telnetlib module.First of all we will import this module.-> import telnetlibAfter we will assign IP address to scan:->host="127.0.0.1"Related IP address and port tries to read information banner.->baglanti=telnetlib.Telnet(host,port)->baglanti.write("n")->print "n",str(port)," - ",baglanti.read_all().splitlines()[0]->baglanti.close()The complete code is as follows:import telnetlibhost="127.0.0.1"for port in range(1,1024,1):try:baglanti=telnetlib.Telnet(host,port)baglanti.write("n")print "n",str(port)," - ",baglanti.read_all().splitlines()[0]baglanti.close()except:passGithub