2021-8-29 myluzh
SECURE
PPTP服务器默认开放1723端口
0x01 PPTP brute forcer
使用PPTP brute forcer,kali自带
源代码:https://github.com/BlackArch/thc-pptp-bruter
命令如下:
cat wordlist.txt | thc-pptp-bruter -u admin 192.168.1.8
0x02 python脚本
https://github.com/3gstudent/Homework-of-Python/blob/master/pptp_password_hack.py
阅读全文>>
标签: pptp 爆破
评论(0)
(1216)
2021-8-9 myluzh
SECURE
"""
PIN码结构:
前四位 中间三位 校验位
x x x x x x x x
单 双 单 双 单 双 单
PIN码最后一位校验算法:
单位:-x*3
双位:10-x
算:双位+ 单位-
最后运算结果取余的绝对值
"""
pin = '7697000' # pin前七位
pinLast = abs((-(3 * int(pin[0])) + (10 - int(pin[1])) - (3 * int(pin[2])) + (10 - int(pin[3])) - (3 * int(pin[4])) + (
10 - int(pin[5])) - (3 * int(pin[6]))) % 10)
print(pinLast) # 校验位
print(pin+str(pinLast))
阅读全文>>
标签: 无线网络 wps pin
评论(0)
(903)
2021-8-5 myluzh
SECURE
今天想更新下kali版本,新版2021.2有些新功能挺好用的,但是出现了问题。
E: The repository 'http://mirrors.163.com/debian wheezy Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
翻译了一下这句报错,大概意思就是无法安全的更新,看了下源地址都是http的,把源地址改成https的就可以了。
sudo vi /etc/apt/sources.list
#清华大学
deb https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free
deb-src https://mirror...
阅读全文>>
标签: kali
评论(0)
(664)