ybdt

Results 10 issues of ybdt

疑问: 看到api.py和default.py中都可以配置api,对于同一个配置,两个文件中配置一个就可以吧? ![image](https://user-images.githubusercontent.com/65813455/180620177-09a7f28b-57d8-4a31-b081-0c9b7624de96.png) 建议: 发现有的api配置(hunter)default.py中有,api.py中没有,建议将api配置统一到一个文件中

bug

![image](https://user-images.githubusercontent.com/65813455/179665026-b5496805-3118-489b-94a6-240cc242d3b1.png) 如图,指定文件后,没有扫描就退出了

指定了100线程,为什么速度很慢,像是1线程

centos6.5 Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux ./tinyvpn_amd64 FATAL: kernel too old Aborted (core dumped)

你好,师傅 我这边执行环境是kali,执行后会报错如下 ![queue](https://user-images.githubusercontent.com/65813455/136693747-09a347eb-8d84-4964-9fc6-9512058f29f8.png) 问题已经解决了,将import queue as Queue修改为from queue import Queue 有点好奇,你那边不报错吗

如下图 ![image](https://user-images.githubusercontent.com/65813455/130572474-87f9053e-1a4a-439b-9edf-94fd69b939d6.png)

resolved

兄弟深信服的? :)

readme中使用支持API和配置文件中有一处不一致,readme中是酷安市场,配置文件中是小蓝本

阅读师傅的代码时,有几处地方不理解 ![image](https://user-images.githubusercontent.com/65813455/178424833-48f0a5f2-5b1a-48cd-9dc0-6febd42912e0.png) 用到了线程,但没使用多线程,不太理解

读了下师傅的BypassAV.py代码,在加密那块有两个疑惑点 01、tempStr = tempStr + password[ int( str(arr[i])[index] ) ] 这条语句中password是经过random.shuffle随机化处理的,那在解密的时候,要如何找到这个随机化的password,是print出来,手动拷贝到c++解密代码中? 02、 arr[i] = str( len(tempStr) ) + tempStr 这条语句中,tempStr是将16进制转为10进制,10进制再转为字符串,字符串再和字符串长度拼接,这里有个问题,16进制转为10进制后可能是252也可能是72,也就是说长度可能是3或者2,那在解密的时候,要如何判断是以2位还是以3位切割呢