当前位置:网站首页>6-3 vulnerability exploitation SSH environment construction
6-3 vulnerability exploitation SSH environment construction
2022-07-02 01:16:00 【Mountain Rabbit 1】
ubuntu build ssh Server side
ubuntu Lower installation corresponding ssh service , The software to be installed is openssh-server
sudo apt-get install openssh-server
You can see that the installation is complete , A lot of content will be loaded in the process , Download and unpack the installation
Open the terminal
sudo apt-get install openssh-server
// Said the use of sudo The administrator operates
Install the software process before , There is no end , We need to end the process , Can be used apt-get, We can also choose to restart ,rebort, Kill the process that was running before
above , We're done openssh-server Software installation , This completes the installation of the corresponding server , Of course, the server software , Not just openssh-server, There are other software , You can use it
ssh Start and shutdown of server services
start-up 、 State acquisition 、 close
service ssh start
service ssh status
service ssh stop
service ssh start
service ssh status
service ssh stop
service ssh status
ubuntu build ssh client
We can't operate just on the server , We need to build the corresponding client , To connect to the server through the client , Then perform remote operation
ubuntu Lower installation putty Tools , Rely on these tools to generate private keys
sudo apt-get install putty-tools
puttygen
Generate the corresponding key
ubuntu build ssh client
ubuntu Lower installation putty:
Search the software center for putty Installation
client , It's not just putty, also xshell、sqssh these
The client connects to the server
open putty Enter the server information , Connect
Input server IP Address , Click on OPEN Connect , The premise of successful connection is , Server side ssh The function is on
id
whoami
ifconfig
You can see this time , In execution shell command
边栏推荐
- ECS project deployment
- 【图像增强】基于Frangi滤波器实现血管图像增强附matlab代码
- 2022 operation of simulated examination platform for melting welding and thermal cutting work license
- [disease detection] realize lung cancer detection system based on BP neural network, including GUI interface
- Datawhale 社区黑板报(第1期)
- Global and Chinese markets for supply chain strategy and operation consulting 2022-2028: Research Report on technology, participants, trends, market size and share
- Basic usage of shell script
- Variables and constants of go language foundation
- Global and Chinese market of wireless charging magnetic discs 2022-2028: Research Report on technology, participants, trends, market size and share
- Review notes of compilation principles
猜你喜欢
AIX存储管理之逻辑卷的创建及属性的查看和修改
Recommend an online interface mock tool usemock
Xinniuniu blind box wechat applet source code_ Support flow realization, with complete material pictures
Common loss function of deep learning
Design and control of multi rotor aircraft (VII) -- sensor calibration and measurement model
How does schedulerx help users solve the problem of distributed task scheduling?
XMIND mind map
SQL injection for Web Security (2)
ACM教程 - 快速排序(常规 + 尾递归 + 随机基准数)
[IVX junior engineer training course 10 papers] 02 numerical binding and adaptive website production
随机推荐
Luogu p1775 stone merger (weakened version)
Hcip day 14 (MPLS protocol)
Shell Function
8.8.4-PointersOnC-20220215
首场“移动云杯”空宣会,期待与开发者一起共创算网新世界!
Design and control of multi rotor aircraft (VII) -- sensor calibration and measurement model
[WesternCTF2018]shrine writeup
UDS bootloader of s32kxxx bootloader
2022 high altitude installation, maintenance and removal of test question simulation test platform operation
A problem about function template specialization
只是以消费互联网的方式和方法来落地和实践产业互联网,并不能够带来长久的发展
Powerful calendar wechat applet source code - support the main mode of doing more traffic
Global and Chinese market of wireless chipsets 2022-2028: Research Report on technology, participants, trends, market size and share
测试人进阶技能:单元测试报告应用指南
Principle of finding combinatorial number and template code
Iclr2022 | spherenet and g-spherenet: autoregressive flow model for 3D molecular graph representation and molecular geometry generation
Comprehensive broadcast of global and Chinese markets 2022-2028: Research Report on technology, participants, trends, market size and share
[eight sorts ④] merge sort, sort not based on comparison (count sort, cardinal sort, bucket sort)
You probably haven't noticed the very important testing strategy in your work
6-3漏洞利用-SSH环境搭建