基于ExtJs+SSHMySql 的开源,权限管理系统,
2022-02-24 16:56:19 23.57MB ExtJs
1
利用SSH-Key实现安全的密钥证书方式登陆
2022-02-24 12:00:54 442KB ssh 安全 运维
数据库创建代码: 1:用户表:(users) userid(主键),username(用户名),password(密码),sex(性别),head(头像),regdate(注册日期) 2:类别表:(types) tid(主键),type 3:技术表:(technic) teid(主键),tename(技术名),tsum(拥有帖子数量),tid(引用类别表主键) 4:帖子表:(card) cid(主键),title(标题),content(内容),outtime(发帖时间),uptime(修改帖子的时间),csum(回帖数量),tename(属于哪个技术), userid(引用用户表外键) 5:回帖表:(restore) rid(主键),rtitle(标题),rcontent(内容),routtime(发帖时间),ruptime(修改帖子的时间),tename(属于哪个技术), userid(引用用户表外键),cid(引用帖子表主键) --用户表:(users) -- Create table create table USERS ( USERID INTEGER not null, USERNAME VARCHAR2(20) not null, PASSWORD VARCHAR2(20) not null, SEX VARCHAR2(20) not null, HEAD VARCHAR2(20) not null, REGDATE DATE not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table USERS add constraint PK_USERID primary key (USERID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --类别表:(types) -- Create table create table TYPES ( TID INTEGER not null, TYPE VARCHAR2(20) not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TYPES add constraint PK_TID primary key (TID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --技术表:(technic) -- Create table create table TECHNIC ( TEID INTEGER not null, TENAME VARCHAR2(20) not null, TSUM INTEGER not null, TID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TECHNIC add constraint PK_TEID primary key (TEID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table TECHNIC add constraint FK_TID foreign key (TID) references TYPES (TID); --帖子表:(card) -- Create table create table CARD ( CID INTEGER not null, TITLE VARCHAR2(20) not null, CONTENT VARCHAR2(100) not null, OUTTIME DATE not null, UPTIME DATE not null, CSUM INTEGER not null, TENAME VARCHAR2(20) not null, USERID INTEGER ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table CARD add constraint PK_CID primary key (CID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table CARD add constraint FK_USERID foreign key (USERID) references USERS (USERID); --回帖表:(restore) -- Create table create table RESTORE ( RID INTEGER not null, RTITLE VARCHAR2(20) not null, RCONTENT VARCHAR2(100) not null, ROUTTIME DATE not null, RUPTIME DATE not null, TENAME VARCHAR2(20) not null, USERID INTEGER not null, CID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table RESTORE add constraint PK_RID primary key (RID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table RESTORE add constraint FK_CID foreign key (CID) references CARD (CID); alter table RESTORE add constraint FK_UID foreign key (USERID) references USERS (USERID); --序列号 -- Create sequence create sequence SEQ_CID minvalue 1 maxvalue 9999999999 start with 1 increment by 1 cache 20 order; --seq_userid -- Create sequence create sequence SEQ_USERID minvalue 1 maxvalue 9999991 start with 1 increment by 1 cache 20 order; --seq_tid -- Create sequence create sequence SEQ_TID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order; --seq_teid -- Create sequence create sequence SEQ_TEID minvalue 1 maxvalue 999999 start with 1 increment by 1 cache 20 order; --seq_rid -- Create sequence create sequence SEQ_RID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order;
2022-02-24 09:47:45 1.22MB bbs论坛
1
SSHSecureShellClient-3.2.9.exe是一款不错的远程linux的工具,文件很小,包含远程连接,文件上传等功能。
2022-02-23 13:49:59 5.12MB linux shell ssh
1
之前在进行ROS学习的过程中一直在困扰如何将ROS应用到项目中,本人只是简单学习过51和32的单片机,对嵌入式系统略有涉猎,最近在学习中接触到了树莓派这个控制板,便入手了一块,下面我来简单介绍一下我在树莓派上安装ROS的过程以及对其中一些步骤粗浅的理解 0.0前言 先放上一张成功的截图(Windows下远程桌面登录树莓派图形界面) 本篇文章适用于树莓派4B,其他版本略有不同,但如果是3B就没必要看这篇文章大部分内容,直接在0.1中给的Ubuntu Mate网址中下载Ubuntu配套镜像(注意,一定要配套,官网有相关提示,请细心)然后正常刷ROS,操作参见后文 首先是树莓派的硬件连接,需要一根
2022-02-23 12:25:08 464KB ros ssh 图形界面
1
SecureCRT是一款支持SSH(SSH1和SSH2)的终端仿真程序,简单的说是Windows下登录UNIX或Linux服务器主机的软件。不同就是SecureCRT支持SSH,同时支持Telnet和rlogin协议。SecureCRT是一款用于连接运行包括Windows、UNIX和VMS的理想工具。通过使用内含的VCP命令行程序可以进行加密文件的传输。有流行CRTTelnet客户机的所有特点,包括:自动注册、对不同主机保持不同的特性、打印功能、颜色设置、可变屏幕尺寸、用户定义的键位图和优良的VT100,VT102,VT220和ANSI竞争.能从命令行中运行或从浏览器中运行.其它特点包括文本手稿、易于使用的工具条、用户的键位图编辑器、可定制的ANSI颜色等.SecureCRT的SSH协议支持DES,3DES和RC4密码和密码与RSA鉴别.
2022-02-23 08:36:47 23.05MB linux 工具 SecureCRT6.5 SSH连接工具
1
TP-LINK WDR7500V2 刷 OpenWRT 转 ArcherC7+救砖教程详细亲测+刷不死SSH---UBoot和 Breed教程
2022-02-22 22:30:27 68.17MB WDR7500V2
1
通常我们需要远程连接Linux服务器的时候,会采用专用的SSH客户端进行管理操作。 网上常见的SSH客户端主要有轻量级的Putty,比较流行的SecureCRT,中文化支持较好的Xshell等产品,每一款都各有优劣,适合在不同的工作场景下使用。 MobaXterm,一款包含了增强型终端、X服务器和Unix命令集(GUN/Cygwin)的豪华型高级工具箱。 MobaXterm在Windows桌面中提供了几乎所有重要的远程网络连接工具,包括(SSH,X11,RDP,VNC,FTP,MOSH等),同时支持LINUX和Windows服务器的远程桌面管理协议。 通过内置的Linux虚拟系统,可以轻松的在本地Windows操作系统上使用各类Unix命令(bash,ls,cat,sed,grep,awk,rsync等)。 当使用SSH连接到远程服务器时,左侧的图形化SFTP浏览器会自动弹出当前目录的远程文件列表,方便直接进行编辑操作,简单的通过文件的拖曳操作即可完成小文件的上传与下载。基于内部的嵌入式X服务器,还可以将远程应用程序在Windows桌面上无缝显示。
2022-02-22 14:01:17 26.03MB ssh windows 运维
1
苹果SSH工具,可用于越狱,以及进行IOS系统的恢复操作和异常处理
2022-02-21 19:38:42 3.13MB 苹果 SSH
1
信息安全综合实践SSH实验报告及指导.doc
2022-02-21 09:15:04 3.26MB