BigYoung

Results 9 comments of BigYoung

> 我刚刚排查出了原因其实就是在-u参数认证的时候,是这样的: > > 千万注意,是两个反斜杠(我的域控测试用是2012) > > **python3 WatchAD.py -d abc.com -s ldap.abc.com -u ABC\\admin -p password** 是的需要双斜杠,这是因为此项目用的python写的,并且调用的是ldap3库访问的AD,"\"单斜杠会被转义,所以需要双斜杠

```go func (n *node) travel(list *([]*node)) { if n.pattern != "" { *list = append(*list, n) } for _, child := range n.children { child.travel(list) } } func (n *node)...

@chongqingzhubajie 直接执行:python manage.py makemigrations password ,python manage.py migrate 就好了 在此补充一下,我个人使用password这个项目时遇到的问题: 1、项目中的requirements.txt 中的django 版本不对,需要手动安装2.1 版本 2、安装pycryptodomex==3.4.7时,Mac电脑如果遇到“gcc 报错”,请执行:xcode-select --install ,等xcode安装好后,重新安装 3、楼上已经反馈的问题,对应的解决方案会回答了。

> 页面提示数据库配置错误什么问题,账号密码可以登陆,反复核对是正确的 frontend 目录下也要配置内容的,具体信息,可以看我写的教程:http://bigyoung.cn/blog/posts/23/

> 新的框架中取消了`from rest_framework.decorators import detail_route, list_route` ,改成了`from rest_framework.decorators import action` . > > @detail_route(methods=['get']) > def detail(self, request, pk=None): > > 这句会报TypeError, bool object is not callable错误 > > 解决办法是更改函数名detail...

> Hello, > > This tool really works for me. Sometimes I have to scan 400 domains. Is there a way to get a report of them through this script?...

参考文档:https://bigyoung.cn/posts/250/ 的pip报错解决方案

> 问题,docker-compose是正常的,没有其他报错,就是打不开网站 image > 请问下,怎么解决这个,谢谢。 搬运工-撰写是正常的,没有其他报错,就是打不开网站 ![图片](https://user-images.githubusercontent.com/61242622/134755494-fdada220-0552-40b1-a834-bdbc47c6246b.png) > 好像遇到了解决办法? 参考文档:https://bigyoung.cn/posts/250/ 的internal server error报错解决方案

参考文档:https://bigyoung.cn/posts/250/ 的gcc报错解决方案