Rundll32.exe
Rundll32.exe,用于在内存中执行dll文件中的函数。
锁定桌面:rundll32.Exe user32.dll LockWorkStation
关机:rundll32.Exe shell32.dll SHExitWindowsEx 1
重启:rundll32.Exe shell32.dll SHExitWindowsEx 2
NET命令
#新建用户
net user amazingadmin123 amazing.123456 /add
#赋予权限
net localgroup Administrators amazingadmin123 /add
#激活用户
net user amazingadmin123 /active:yes
#关闭防火墙
netsh firewall set opmode mode=disable
#开启默认设置 netsh firewall reset
PowerShell-Windows应用相关命令
#获取所有用户安装的APPX包
Get-AppxPackage -allusers | Select Name, PackageFullName | findstr "c"
#获取应用程序包的详细信息
Get-AppxPackageManifest
#重装所有内置应用
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
#卸载windows应用商店及appx应用
get-appxpackage *store* | remove-Appxpackag
#卸载windows内置应用,可使用"*"匹配符。
#卸载 "照片"
Get-AppxPackage *Microsoft.Windows.Photos* | Remove-AppxPackage
#OneNote:
Get-AppxPackage *OneNote* | Remove-AppxPackage
#3D:
Get-AppxPackage *3d* | Remove-AppxPackage
#Camera相机:
Get-AppxPackage *camera* | Remove-AppxPackage
#邮件和日历:
Get-AppxPackage *communi* | Remove-AppxPackage
#新闻订阅:
Get-AppxPackage *bing* | Remove-AppxPackage
#Groove音乐、电影与电视:
#Get-AppxPackage *zune* | Remove-AppxPackage
#人脉:
Get-AppxPackage *people* | Remove-AppxPackage
#手机伴侣(Phone Companion):
Get-AppxPackage *phone* | Remove-AppxPackage
#纸牌游戏:
Get-AppxPackage *solit* | Remove-AppxPackage
#录音机:
Get-AppxPackage *soundrec* | Remove-AppxPackage
#Xbox:
Get-AppxPackage *xbox* | Remove-AppxPackage
CMD
使用cmd查看txt文件,使用type 1.txt命令,若中文乱码,使用chcp 65001命令。
PostgreSql
#登录
psql -h 39.99.158.58 -p 54321 -U SYSTEM -d CS_CMD_SYSTEM
JAVA
ubuntu切换JAVA:sudo update-alternatives –config java
ubuntu安装MobSF的docker容器:docker pull opensecurity/mobile-security-framework-mobsf MobSF容器