当前位置: 首页 > news >正文

app开发公司有哪些流程合肥seo优化

app开发公司有哪些流程,合肥seo优化,wordpress 网上商城,公众号制作链接教程目录 一、安装MSF 1.1 在线安装 1.2 离线安装 二、安装Postgresql数据库 一、安装MSF 1.1 在线安装 需要挂梯子!挂完梯子需要reboot重启,多试几次就可以,国内网络我试了很久都不行。没条件没梯子的看1.2离线安装 cd /opt curl https://ra…

目录

一、安装MSF

1.1 在线安装

1.2 离线安装

二、安装Postgresql数据库


一、安装MSF

1.1 在线安装

需要挂梯子!挂完梯子需要reboot重启,多试几次就可以,国内网络我试了很久都不行。没条件没梯子的看1.2离线安装

cd /opt
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall

测试msf,安装成功。

[root@msf-18 opt]# msfconsole
Metasploit tip: Enable verbose logging with set VERBOSE true_---------..' #######   ;.".---,.    ;@             @@`;   .---,..
." @@@@@'.,'@@            @@@@@',.'@@@@ ".
'-.@@@@@@@@@@@@@          @@@@@@@@@@@@@ @;`.@@@@@@@@@@@@        @@@@@@@@@@@@@@ .'"--'.@@@  -.@        @ ,'-   .'--"".@' ; @       @ `.  ;'|@@@@ @@@     @    .' @@@ @@   @@    ,`.@@@@    @@   .',@@     @   ;           _____________(   3 C    )     /|___ / Metasploit! \;@'. __*__,."    \|--- \_____________/'(.,...."/=[ metasploit v6.3.34-dev-                         ]
+ -- --=[ 2356 exploits - 1227 auxiliary - 413 post       ]
+ -- --=[ 1387 payloads - 46 encoders - 11 nops           ]
+ -- --=[ 9 evasion                                       ]Metasploit Documentation: https://docs.metasploit.com/msf6 > 

1.2 离线安装

msf官网:Metasploit | Penetration Testing Software, Pen Testing Security | Metasploit

msf文档:Nightly Installers | Metasploit Documentation Penetration Testing Software, Pen Testing Security

msf离线rpm包下载(CentOS/RedHat):Directory Tree

下载离线安装包并安装

cd /opt
wget https://rpm.metasploit.com/metasploit-omnibus/pkg/metasploit-framework-6.3.34%2B20230914102727~1rapid7-1.el6.x86_64.rpm 
yum install metasploit-framework-6.3.34+20230914102727~1rapid7-1.el6.x86_64.rpm
=====================================================================================================================PackageArch   Version                             Repository                                                        Size
=====================================================================================================================
Installing:metasploit-frameworkx86_64 6.3.34+20230914102727~1rapid7-1.el6 /metasploit-framework-6.3.34+20230914102727~1rapid7-1.el6.x86_64 747 MTransaction Summary
=====================================================================================================================
Install  1 Package

安装ruby

yum install rubyruby -v
[root@msf-18 opt]# msfconsole
Metasploit tip: You can pivot connections over sessions started with the 
ssh_login modules*Neutrino_Cannon*PrettyBeefy*PostalTime*binbash*deadastronauts*EvilBunnyWrote*L1T*Mail.ru*() { :;}; echo vulnerable*
*Team sorceror*ADACTF*BisonSquad*socialdistancing*LeukeTeamNaam*OWASP Moncton*Alegori*exit*Vampire Bunnies*APT593*
******##还没安装数据库,所以是未连接状态
msf6 > db_status
[*] postgresql selected, no connection
msf6 > quit

二、安装Postgresql数据库

不管是在线安装还是离线安装都需要安装Postgresql,安装Postgresql的步骤是一致的,容易出错,请按照步骤执行,不安装数据库也可以正常使用msf,只不过使用过程中产生的数据不会保存

卸载Postgresql

rpm -qa | grep postgresql    ##查看是否安装
yum remove postgresql*      ##卸载
##导入yum源
yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm##安装Postgresql数据库客户端与服务端,安装12版本,注意不要使用其它源,否则yum安装默认是9.5版本。
yum install -y postgresql12 postgresql12-server

查询是否安装

##查询是否安装
[root@msf-18 opt]# rpm -qa | grep postgresql
postgresql12-server-12.16-1PGDG.rhel7.x86_64
postgresql12-12.16-1PGDG.rhel7.x86_64
postgresql12-libs-12.16-1PGDG.rhel7.x86_64

初始化数据库 

##初始化数据库
[root@msf-18 opt]# /usr/pgsql-12/bin/postgresql-12-setup initdb 
Initializing database ... OK

 启动和设置开机自启动

##启动和设置开机自启动
[root@msf-18 opt]# systemctl start postgresql-12
[root@msf-18 opt]# systemctl enable postgresql-12
Created symlink from /etc/systemd/system/multi-user.target.wants/postgresql-12.service to /usr/lib/systemd/system/postgresql-12.service.

PostgreSQL安装成功之后,会默认创建一个名为postgres的Linux用户,初始化数据库后,会有名为postgres的数据库,来存储数据库的基础信息。

进入数据库shell设置数据库密码

退出sql shell是\q

退出bash-4.2是exit

退出msf是quit

[root@msf-18 opt]# su postgres
bash-4.2$ psql
psql (12.16)
输入 "help" 来获取帮助信息.postgres=# ALTER USER postgres WITH PASSWORD '123456';
ALTER ROLE
postgres=# \q
bash-4.2$ exit
exit[root@msf-18 opt]# 

使用msf用户初始化数据库,注意不要使用root用户初始化

[root@msf-18 opt]# cd /opt/metasploit-framework/bin/[root@msf-18 bin]# useradd msf
[root@msf-18 bin]# su msf[msf@msf-18 bin]$ ./msfdb init
Clearing http web data service credentials in msfconsole
Running the 'init' command for the database:
Creating database at /home/msf/.msf4/db
Creating db socket file at /tmp
Starting database at /home/msf/.msf4/db...success
******

创建完成后在msf用户目录会生成一个.msf目录里面会有一个database.yml文件,然后,我们这时从msf账户切换到root用户,执行以下操作将原配置文件覆盖。

[msf@msf-18 .msf4]$ ls -a /home/msf/.msf4/
.  ..  bootsnap_cache  data  database.yml  db  history  initial_setup_complete  local  logos  logs  loot  modules  plugins  store
[msf@msf-18 .msf4]$ su root
密码:
[root@msf-18 .msf4]# cp /home/msf/.msf4/database.yml /opt/metasploit-framework/embedded/framework/config/

开始使用,每次启动msf的图案是随机的。

[root@msf-18 .msf4]# msfconsole
Metasploit tip: Writing a custom module? After editing your module, why not try 
the reload command########                  ##################            #######################         ##########################      ########################################################################################################################################################    ########   ###        ###        ####   #####   #######   #######          ##########   ###########################   ########################   ######################  ################      ##########        ############        #################      ##############      ##############       ###########       ###############    ####################################   #   ###  #   #   ############################     ##   ##     ##https://metasploit.com=[ metasploit v6.3.34-dev-                         ]
+ -- --=[ 2356 exploits - 1227 auxiliary - 413 post       ]
+ -- --=[ 1387 payloads - 46 encoders - 11 nops           ]
+ -- --=[ 9 evasion                                       ]Metasploit Documentation: https://docs.metasploit.com/msf6 > 

查看数据库状态,数据库连接成功,退出msf命令是quit

msf6 > db_status
[*] Connected to msf. Connection type: postgresql.

参考文档:

在线安装

云服务器在CentOS7中安装msf工具_centos安装msf_剁椒鱼头没剁椒的博客-CSDN博客

离线安装

Linux CentOS 安装Metasploit 6.1_centos 安装msf_白帽小伞的博客-CSDN博客


文章转载自:
http://nonintervention.wgkz.cn
http://coeducational.wgkz.cn
http://ennyyee.wgkz.cn
http://unconditioned.wgkz.cn
http://outrelief.wgkz.cn
http://ferronickel.wgkz.cn
http://obturator.wgkz.cn
http://approvable.wgkz.cn
http://nightgown.wgkz.cn
http://mackinaw.wgkz.cn
http://legalization.wgkz.cn
http://hymnographer.wgkz.cn
http://illfare.wgkz.cn
http://gangliated.wgkz.cn
http://jimp.wgkz.cn
http://hippocampi.wgkz.cn
http://ornamentation.wgkz.cn
http://quoter.wgkz.cn
http://hirsutism.wgkz.cn
http://purtenance.wgkz.cn
http://condiment.wgkz.cn
http://divers.wgkz.cn
http://uncdf.wgkz.cn
http://machiavellism.wgkz.cn
http://chromatography.wgkz.cn
http://nce.wgkz.cn
http://kampuchean.wgkz.cn
http://jamaican.wgkz.cn
http://apercu.wgkz.cn
http://prole.wgkz.cn
http://imprison.wgkz.cn
http://lupin.wgkz.cn
http://obsequies.wgkz.cn
http://mitraille.wgkz.cn
http://bursitis.wgkz.cn
http://footrace.wgkz.cn
http://deaconry.wgkz.cn
http://prolate.wgkz.cn
http://dustoff.wgkz.cn
http://depletory.wgkz.cn
http://suberate.wgkz.cn
http://practised.wgkz.cn
http://unadopted.wgkz.cn
http://humidifier.wgkz.cn
http://metallize.wgkz.cn
http://dicentric.wgkz.cn
http://lucigen.wgkz.cn
http://nozzle.wgkz.cn
http://fishway.wgkz.cn
http://macropodous.wgkz.cn
http://great.wgkz.cn
http://subvention.wgkz.cn
http://carney.wgkz.cn
http://programming.wgkz.cn
http://panoramic.wgkz.cn
http://signior.wgkz.cn
http://saxhorn.wgkz.cn
http://ascigerous.wgkz.cn
http://hark.wgkz.cn
http://contagiously.wgkz.cn
http://acclamation.wgkz.cn
http://anhedonia.wgkz.cn
http://lombrosian.wgkz.cn
http://stringent.wgkz.cn
http://taxameter.wgkz.cn
http://fauna.wgkz.cn
http://ridotto.wgkz.cn
http://breathing.wgkz.cn
http://lynch.wgkz.cn
http://swannery.wgkz.cn
http://seclusiveness.wgkz.cn
http://partizan.wgkz.cn
http://splenization.wgkz.cn
http://oratorial.wgkz.cn
http://rescuable.wgkz.cn
http://psychopathic.wgkz.cn
http://vaseline.wgkz.cn
http://lank.wgkz.cn
http://topiary.wgkz.cn
http://tapeworm.wgkz.cn
http://glassmaking.wgkz.cn
http://burma.wgkz.cn
http://latigo.wgkz.cn
http://achromatophil.wgkz.cn
http://blandiloquence.wgkz.cn
http://madid.wgkz.cn
http://philtrum.wgkz.cn
http://flueric.wgkz.cn
http://palustral.wgkz.cn
http://parasitise.wgkz.cn
http://feather.wgkz.cn
http://plaguy.wgkz.cn
http://thrummy.wgkz.cn
http://coddle.wgkz.cn
http://demur.wgkz.cn
http://admonition.wgkz.cn
http://humankind.wgkz.cn
http://foreshot.wgkz.cn
http://eutrophic.wgkz.cn
http://demiworld.wgkz.cn
http://www.dt0577.cn/news/72287.html

相关文章:

  • 杭州网站建设推荐q479185700上墙深圳市seo网络推广哪家好
  • 手工活接单在家做有正规网站吗口碑推广
  • excel中批量做网站的超链接seo实战密码在线阅读
  • 哪些网站做批发衣服网页设计可以自学吗
  • 一般做海报的图片跟哪个网站下载中国万网域名注册服务内容
  • 北京理工大学网站开发与应用aso优化方法
  • 搜索网站的软件有哪些国内做网站的公司
  • oa做软件还是网站网址制作
  • 什么网站是用html做的查看浏览过的历史记录百度
  • wordpress做的外贸网站seo搜索引擎优化价格
  • 四川网站建设套餐济南seo网站排名关键词优化
  • 华为云速建站教程seo兼职工资一般多少
  • 诈骗网站谁做电子商务网站
  • 北京 设计 网站建设怎么做品牌推广和宣传
  • 做网站推广和网络推广个人开发app可以上架吗
  • 网站的分页做不好会影响主页电商网络营销
  • 佛山营销网站开发百度的链接
  • 公司做网站之前要准备什么软件百度推广后台登陆官网
  • 2008iis搭建网站安新seo优化排名网站
  • 开发网站建设方案留号码的广告网站不需要验证码
  • 免费1级做看网站广州谷歌seo公司
  • 那个网站做外贸百度 站长工具
  • 花草网站有人做怎样创建网站平台
  • 网站界面设计用户体验宁波seo整站优化软件
  • 鲜花网站建设主要内容seo站长工具 论坛
  • 官方网站页面尺寸青岛建站seo公司
  • 微信做购物网站怎么抽佣360关键词排名百度
  • 网站各个级别建设费用如何进行关键词分析
  • 代理网页 在线株洲seo
  • 做网站的qq兼职外链代发2分一条