TscanPlus

https://github.com/TideSec/TscanPlus
无影
安全工具
一款综合性网络安全检测和运维工具,旨在快速资产发现、识别、检测,构建基础资产信息库,协助甲方安全团队或者安全运维人员有效侦察和检索资产,发现存在的薄弱点和攻击面。

https://github.com/bee-san/RustScan
RustScan
The Modern Port Scanner. Find ports quickly (3 seconds at its fastest). Run scripts through our scripting engine (Python, Lua, Shell supported).
快速扫描器,

获取mstsc端口号

tasklist /svc | find “TermService”
记录输出中的 PID(例如 1264)
netstat -ano | find “1264”

reg query “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp”
简化
reg query “HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp”
查看值 PortNumber , 0xD3D,
运行计算器 calc ,计算16进制 D3D 即 3389


reg query “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp”

Intel 网卡驱动集合 Intel® Ethernet Adapter Complete Driver Pack 修改驱动下载

/cd/I226V-DEV-125C-PRO2500-With-Mod-SHA1-e54551e4cc4d4542b87adf0e2dff53fa0d1e18af.7z

0.下驱动

1.关签名
bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS
bcdedit -set TESTSIGNING ON

2.重启

3. 装驱动

4.开签名
bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS
bcdedit -set TESTSIGNING OFF

 

Intel 网卡驱动集合

Intel® Ethernet Adapter Complete Driver Pack

https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html
https://downloadmirror.intel.com/864790/Release_30.4.2.zip

  • OS Independent, FreeBSD*, Microsoft Windows*, Linux*, VMware*
  • Size: 888.4 MB
  • SHA256: 840549FBD7886CA5050321C08DCCE0ABCFA3507B40C3F6A041865C9C8953ED96

此下载对下面列出的产品有效。

数据库SQL-MySQL-SQLServer-Oracle-PGSQL-在Linux中安装SQLServer

==============================================
MySQL
https://downloads.mysql.com/archives/installer/
官方工具集 https://downloads.mysql.com/archives/
==============================================
忘记MySQL 密码
先关闭mysql服务,再带参数启动
./mysqld_safe –skip-grant-tables
进mysql命令行
mysql -uroot -p
执行更新
update mysql.user SET Password=PASSWORD(‘password123′) where USER=’root’;
update mysql.user set authentication_string=password(‘password123′) where user=’root’;
update mysql.user set grant_priv=’Y’ where user=’root’ and host=’%’;
grant all privileges on *.* to root@”%” identified by “Password123”;
grant all privileges on *.* to root@”127.0.0.1″ identified by “Password123” WITH GRANT OPTION;
select host,user,password,authentication_string from mysql.user;
flush privileges;
退出重启MySQL,密码已变更为password123
==============================================
PQSQL
https://www.postgresql.org/download/

==============================================
Microsoft® SQL Server® 2017 Express
https://www.microsoft.com/zh-CN/download/details.aspx?id=55994
官方管理工具 SQL Server Management Studio
https://docs.microsoft.com/zh-CN/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017

Yes, SQL Server 2008 R2 Express with Tools and SQL Server 2008 R2 Express with Advanced Services will allow 10GB databases as well.
SQL Server 2008 R2 Express is still limited to 1 CPU and 1 GB or RAM.
免费版有内存使用和数据库大小的限制, 10G数据库,1G内存,1CPU,
作为测试,要用那么多资源干啥??

==============================================
# 在Linux中安装SQLServer
https://learn.microsoft.com/zh-cn/sql/linux/quickstart-install-connect-docker
sql-server-management-studio
https://learn.microsoft.com/zh-cn/ssms/download-sql-server-management-studio-ssms#download-ssms
https://aka.ms/ssmsfullsetup

==============================================

Oracle Database XE , Free Oracle Database for Everyone
https://www.oracle.com/database/technologies/appdev/xe.html
Oracle SQL Developer
https://www.oracle.com/cn/tools/downloads/oracle-sql-developer-download.html

序号版本数据限制内存限制处理器限制
 1 XE 18c 12GB 2GB 2*CPU
 2 XE 11gR2 11GB 1GB 1*CPU
 3 XE 10g 4GB 1GB 1*CPU

一台机器上只能安装一个 XE 实例, 最大数据库大小为 12 GB,可使用的最大内存是 2G
==============================================

管理工具
heidisql
https://www.heidisql.com/download.php

快速导出数据库结构
SmartSQL
https://gitee.com/izhaofu/SmartSQL

错误提示:ERROR 1273 (HY000): Unknown collation: ‘utf8mb4_0900_ai_ci’
是因为linux下MySQL版本不兼容导致的
我们需要做的是打开我们导出的的sql文件

• 把文件中的所有的utf8mb4_0900_ai_ci替换为utf8_general_ci
• 以及utf8mb4替换为utf8

最后再重新导入成功。

ALTER USER ‘sqluser’@’%’ IDENTIFIED WITH mysql_native_password BY ‘sqluser’;
FLUSH PRIVILEGES;