HackMyVm Confusion Walkthroughhttps://hackmyvm.eu/machines/machine.php?vm=ConfusionScan ports. ~ nmap -sV -sC -p- 192.168.56.100 -oN ports.log Starting Nmap 7.91 ( https://nmap.org ) at 2021-10-29 15:59 CST Nmap sca
HackMyVm Method WalkthroughScan ports first. nmap -sV -sC -p- -oN ports.log 192.168.56.100 Nmap scan report for bogon (192.168.56.100) Host is up (0.0025s latency). Not shown: 65533 closed ports PORT STATE SERVICE VERS
HackMyVm Breakout WalkthroughKey points: good enumhttps://hackmyvm.eu/machines/machine.php?vm=BreakoutScan ports. ~ nmap -sV -sC -p- -Pn 192.168.33.145 -oN ports.log Host discovery disabled (-Pn). All addresses wil
HackMyVm Taurus WalkthroughKeypoints: generate custom dic, tcpdump, IPv6https://hackmyvm.eu/machines/machine.php?vm=TaurusScan ports first, only 21 and 22 open, and 21 is filtered. nmap -sV -sC -p- -Pn -oN ports.log 192.168.56.100 Nmap scan
HackMyVm Tom Walkthroughhttps://hackmyvm.eu/machines/machine.php?vm=TomKey points: tomcat configuration and uploadScan ports. ~ nmap -sV -sC -p- -Pn 192.168.56.100 -oN ports.log
HackMyVm Hat Walkthroughhttps://hackmyvm.eu/machines/machine.php?vm=HatKey points: IPv6Nmap scan ports. nmap -sV -sC -p- -Pn -oN ports.log 192.168.56.100 Nmap scan report for deathnote.vuln (192.168.56.100) Host is up (0.0012s latency)
HackMyVm Tranquil Walkthroughhttps://hackmyvm.eu/machines/machine.php?vm=TranquilKey points: multi service on one port, gshadow.Scan ports, only 21 is open, and anonymous login, very strange. nmap -sV -sC -p- -oN ports.log 192.168.56.100&n
之前用python做了个命令行的爬虫,在安卓上运行时还得打开termux,用上虚拟键盘,很不方便,于是一直想改为Android版本的。近期刚发现Kivy/KivyMD可以基于Python进行跨平台开发,国庆期间进行了尝试。在此记录一些踩坑经历,供有相同需求的同学参考。一、解决中文乱码问题Kivy和KivyMD原生不支持中文,采用的默认字体是英文字体,直接运行起来就会显示方框。Kivy中可以通过设置LabelBase修改字体,但是每一个控件都要在代码中增加font_style的定义,非常不方便。而