Reber's Blog

只会一点点编程、只会一点点渗透


Python 实现密码生成器

0x00 简介 有时候需要在网上注册许多账号,如果每个账户密码都一样的话,若被别人得知一个密码则所有账户就都沦陷了,若密码不一样则 more...

Python 实现多线程弱口令爆破

0x00 脚本 #!/usr/bin/env python # -*- coding: utf-8 -*- 'this script can bruter ftp/ssh/mysql' __author__ = 'reber' import Queue import threading import time import logging import socket from optparse import OptionParser import paramiko from ftplib import FTP import MySQLdb #################公有类 more...

Ubuntu 下安装 Metasploit

0x00 安装Metasploit 下载msfinstall脚本 $ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall 修改文件权限 $ chmod 755 msfinstall 安装(可能时间较久) $ ./msfinstall 更新exp $ more...

Python 命令行参数解析

0x00 argparse 模块 参考 https://docs.python.org/zh-cn/3.7/library/argparse.html #!/usr/bin/env python # -*- coding: utf-8 -*- import argparse class Parser(object): """Parser""" def __init__(self): super(Parser, self).__init__() self.service_type_list = [ "ssh","telnet","ftp", "mysql","mssql","oracle","pgsql","redis" ] self.log_level = ["debug", "info", "warning", "error", "critical"] self.example = """Example: \r python3 {} -s ssh -i 123.123.123.123 \r python3 {} -s ssh -i 123.123.123.123/24 -l root -p 123456""" def parser(self): parser more...

Previous Page 9 of 18 Next Page