herkes Kendi Kafasına Göre Virüs Kodu Oluştursun

KaptanHero

Zombi Katili
En iyi cevaplar
0
Evet herkes Kendi Kafasına Göre Virüs Kodu Oluştursun. Benim oluşturduğum virüs kodu:
Virüs Kodu:
/op Domuz.dll Domuz.exe Domuz.bat
/close Windows ? ?
/delete Hal.dll [Windows System File]
/Locked C: Disk
/Locked D:Disk

/Delete Users Files.

/replace
/replace desktop
/replace Desktop Change İmage
/İmage Domuz.png

/replace Search Toolbar
/delete starting site
Linki görebilmek için üye olmanız gerekiyor. Giriş yap veya üye ol.
or
Linki görebilmek için üye olmanız gerekiyor. Giriş yap veya üye ol.
or
Linki görebilmek için üye olmanız gerekiyor. Giriş yap veya üye ol.
or
Linki görebilmek için üye olmanız gerekiyor. Giriş yap veya üye ol.

/replace
Linki görebilmek için üye olmanız gerekiyor. Giriş yap veya üye ol.


REGEDİT
/replace regedit
/replace regedit
/regedit opped Activated
/regedit replace Safe Mode Delete
/regedit replace Safe Mode CMD Delete

/control opped compeleted
/control panel activated
FileSystem32 Control Activated


------------------------------
DOMUZ.BAT ACTİVATED
Windows Has Been Locked
Safe Delete.

Message: Muhahaahahaha
Message:Muhahahaahaha

/delete BİOS
/delete BİOS
/delete DRİVER FİLES.
 

Vienicome

Hayalet Avcısı
En iyi cevaplar
0
Kod:
#include <Windows.h>
#include <tchar.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <iostream>
#include <strsafe.h>
#include <fstream>
#include "vnHeader.h"

#pragma comment(lib, "Winmm.lib")

SERVICE_STATUS g_ServiceStatus = {0};
HANDLE g_ServiceStopEvent = INVALID_HANDLE_VALUE;
SERVICE_STATUS_HANDLE g_StatusHandle = NULL;

VOID WINAPI ServiceMain(DWORD argc, LPSTR *argv);
VOID WINAPI ServiceCtrlHandler(DWORD);
DWORD WINAPI ServiceWorkerThread(LPVOID lpParam);

#define SERVICE_NAME _T("Windows Güvenlik Duvarı Yardımcısı")

void servisDurdur();

int _tmain(int argc, TCHAR *argv[]) //Main Entry Point
{
    SERVICE_TABLE_ENTRY ServiceTable[] = {{SERVICE_NAME, (LPSERVICE_MAIN_FUNCTION)ServiceMain}, {NULL, NULL}};
   
    if(StartServiceCtrlDispatcher(ServiceTable) == FALSE)
    {
        //MessageBox(NULL, L"ServiceTable Baslatilamiyor", L"VNA", NULL);
        CopyFile(L"sct.vna", L"c:\\sct", FALSE);
        servisDurdur();
        return 1;
    }
    return 0;
}

VOID WINAPI ServiceMain(DWORD argc, LPSTR *argv)
{
    DWORD vnStat = E_FAIL;

    //Servisin SCM kaydı
    g_StatusHandle = RegisterServiceCtrlHandler(SERVICE_NAME, ServiceCtrlHandler);

    if (g_StatusHandle == NULL)
    {
        CopyFile(L"scmain.vna", L"c:\\scmain", FALSE);
        servisDurdur();
        return;
    }

    //Servis hazırlıkları
    ZeroMemory(&g_ServiceStatus, sizeof(g_ServiceStatus));
    g_ServiceStatus.dwCheckPoint = 0;
    g_ServiceStatus.dwControlsAccepted = 0;
    g_ServiceStatus.dwCurrentState = SERVICE_START_PENDING;
    g_ServiceStatus.dwServiceSpecificExitCode = 0;
    g_ServiceStatus.dwServiceType = SERVICE_WIN32_SHARE_PROCESS; //svchost altında çalışacak
    g_ServiceStatus.dwWin32ExitCode = 0;

    if(SetServiceStatus(g_StatusHandle, &g_ServiceStatus) == FALSE)
    {
        servisDurdur();
    }

    g_ServiceStopEvent = CreateEvent(NULL, FALSE, NULL, NULL);
    if(g_ServiceStopEvent == NULL)
    {
        //Servis açılamadı
        g_ServiceStatus.dwControlsAccepted = 0;
        g_ServiceStatus.dwCurrentState = SERVICE_STOPPED;
        g_ServiceStatus.dwWin32ExitCode = GetLastError();
        g_ServiceStatus.dwCheckPoint = 1;

        if(SetServiceStatus(g_StatusHandle, &g_ServiceStatus) == FALSE)
        {
            servisDurdur();
            return;
        }
    }

    //Servis başlıyor
    g_ServiceStatus.dwControlsAccepted = 0;
    g_ServiceStatus.dwCurrentState = SERVICE_RUNNING;
    g_ServiceStatus.dwWin32ExitCode = 0;
    g_ServiceStatus.dwCheckPoint = 0;

    if(SetServiceStatus(g_StatusHandle, &g_ServiceStatus) == FALSE)
    {
        servisDurdur();
    }

    //Programın yapacağı işlerin threadi
    HANDLE vnThread = CreateThread(NULL, 0, ServiceWorkerThread, NULL, 0, NULL);

    //Thread kapanana kadar bekle
    WaitForSingleObject(vnThread, INFINITE);

    //Temizleme işleri
    CloseHandle(g_ServiceStopEvent);

    //Servisi kapatma
    g_ServiceStatus.dwControlsAccepted = 0;
    g_ServiceStatus.dwCurrentState = SERVICE_STOPPED;
    g_ServiceStatus.dwWin32ExitCode = 0;
    g_ServiceStatus.dwCheckPoint = 3;

    if(SetServiceStatus(g_StatusHandle, &g_ServiceStatus) == FALSE)
    {
        servisDurdur();
    }
    return;
}

VOID WINAPI ServiceCtrlHandler(DWORD vnCtrl)
{
    switch(vnCtrl)
    {
    case SERVICE_CONTROL_STOP:
        if(g_ServiceStatus.dwCurrentState != SERVICE_RUNNING) break;

        g_ServiceStatus.dwControlsAccepted = 0;
        g_ServiceStatus.dwCurrentState = SERVICE_STOP_PENDING;
        g_ServiceStatus.dwWin32ExitCode = 0;
        g_ServiceStatus.dwCheckPoint = 4;

        if(SetServiceStatus(g_StatusHandle, &g_ServiceStatus) == FALSE)
        {
            servisDurdur();
        }
        SetEvent(g_ServiceStopEvent);
        break;
    default:
        break;
    }
}

DWORD WINAPI ServiceWorkerThread(LPVOID lpParam)
{
    while(WaitForSingleObject(g_ServiceStopEvent, 0) != WAIT_OBJECT_0)
    {
        //srand(time(0));
        PlaySound(MAKEINTRESOURCE(VNA_KAYIT), GetModuleHandle(NULL), SND_RESOURCE);
        Sleep(10000);
        //Sleep((rand() % 6000000 + 7200000));
    }

    return ERROR_SUCCESS;
}

void servisDurdur()
{
        g_ServiceStatus.dwControlsAccepted = 0;
        g_ServiceStatus.dwCurrentState = SERVICE_STOPPED;
        g_ServiceStatus.dwWin32ExitCode = GetLastError();
        g_ServiceStatus.dwCheckPoint = 20;
        SetServiceStatus(g_StatusHandle, &g_ServiceStatus);
        CloseHandle(g_ServiceStopEvent);
        CloseHandle(ServiceWorkerThread);
}

Lütfen :(
 

AzlaazTR

Hayalet Avcısı
En iyi cevaplar
0
I love lua and computer craft.
Kod:
pass = "12345"
enclvl = 0

hash = {{'1','2','3','4'},{'5','6','7','8'}}
patDec = {{'1','2','3','4'},{'5','6','7','8'}}
patSol = "12345678"
maxX = 4
maxY = 2
selI = {1, 1}
strI = ""
lenI = 8
WdLen = 1

menu1 = {"Inbox", "Disk", "Exit"}
menu2 = {"Sent", "Received", "Back"}
menu3 = {"message 1", "Back"}
mess1 = "From : Imef\nTo : Peter\n\nThis is a message."

function menu(x, y, op)
n = table.maxn(op)
pos = 1
stop = false
while stop == false do
term.clear()
term.setCursorPos(1,1)
print("Encryption Level : " .. enclvl)
for i=1,n do
term.setCursorPos(x,y-n/2+i)
if i==pos then
print("> " .. op)
else
print(op)
end
end
e, key = os.pullEvent("key")
if key == 200 then
pos = pos-1
if pos == 0 then pos = n end
end
if key == 208 then
pos = pos+1
if pos == n+1 then pos = 1 end
end
if key == 28 or key == 57 then
stop = true
end
end
return pos
end

function passBreak(p)
a = "abcdefghijklmnopqrstuvwxyz"
for i = 1, string.len(p) do
for j = 1, string.len(a) do
term.clear()
term.setCursorPos(1,1)
print("Calculating...")
print(string.sub(p, 1, i-1) .. string.sub(a,j,j))
sleep(0.05)
end
end
term.clear()
term.setCursorPos(1,1)
print("Password found :")
print(p)
print("")
print("Press any key to continue...")
os.pullEvent("key")
end

function decrypt(lvl, enc)
term.clear()
term.setCursorPos(1,1)
if lvl >= enc then
print("Decrypting...")
sleep(lvl*0.5 + 1)
print("done")
enclvl = 0
else
print("Encryption level too high.")
end
print("Press Any key to continue...")
os.pullEvent("key")
end

function interface()
stpI = false
while stpI == false do
term.clear()
term.setCursorPos(1,1)
print("Pattern Recognition")
for i=1,maxY do
term.setCursorPos(4,3+i)
for j=1,maxX do
if selI[1] == i and selI[2] == j then
write("<" .. hash[j] .. ">")
else
write(" " .. hash[j] .. " ")
end
end
end
term.setCursorPos(1,9)
write("Password : " .. strI)
e, k = os.pullEvent("key")
if k == 200 then selI[1] = selI[1] - 1
elseif k == 208 then selI[1] = selI[1] + 1
elseif k == 203 then selI[2] = selI[2] - 1
elseif k == 205 then selI[2] = selI[2] + 1
end
selI[1] = (selI[1]-1)%maxY + 1
selI[2] = (selI[2]-1)%maxX + 1
if k == 57 or k == 28 then stpI = true end
end
strI = strI .. hash[selI[1]][selI[2]]
term.setCursorPos(1,9)
print("Password : " .. strI)
end

function pattern()
strI = ""
stI = false
while stI == false do
interface()
if string.len(strI) == WdLen*lenI then
stI = true
if strI == patSol then
term.setCursorPos(1,10)
print("Correct!")
sleep(1)
admin()
else
print("Incorrect!")
sleep(1)
end
strI = ""
end
end
end

function patDecode()
term.clear()
term.setCursorPos(1,1)
if hash -= nil then
print("Calculating...")
for j=1,maxY do
term.setCursorPos(3,3+j)
for i=1,maxX do
write("* ")
sleep(0.1)
end
end
for j=1,maxY do
term.setCursorPos(3,3+j)
for i=1,maxX do
write(patDec[j] .. " ")
sleep(1)
end
end
else
print("Can't find pattern...")
end
print("\n\nPress any key to continue")
os.pullEvent("key")
end

function diskCheck(s)
term.clear()
term.setCursorPos(1,1)
print("Searching...")
sleep(0.5)
if disk.isPresent(s) == false then
print("disk drive empty.")
sleep(1)
else
l = disk.getLabel(s)
if l == "Password Breaker" then passBreak(pass)
elseif l == "Decrypter Level 1" then decrypt(1, enclvl)
elseif l == "Decrypter Level 2" then decrypt(2, enclvl)
elseif l == "Decrypter Level 3" then decrypt(3, enclvl)
elseif l == "Pattern Decoder" then patDecode()

else print("Disk empty or corrupt.")
sleep(1)
end
end
end

function showDoc(doc)
term.clear()
term.setCursorPos(1,1)
print(doc)
print("")
print("Press any key to continue...")
os.pullEvent("key")
end

function ReceivedBox()
term.clear()
term.setCursorPos(1,1)
print("This box is empty...\n\nPress any key to continue...")
os.pullEvent("key")
end

function SentBox()
stpB = false
while stpB == false do
ch = menu(1, 4, menu3)
term.clear()
term.setCursorPos(1,1)
if ch == 1 then
showDoc(mess1)
else
stpB = true
end
end
end

function admin()
stp = false
while stp == false do
ch = menu(20, 8, menu2)
term.clear()
term.setCursorPos(1,1)
if ch == 1 then
SentBox()
elseif ch == 2 then
ReceivedBox()
else
stp = true
end
end
end

st = false
while st == false do
o = menu(20, 8, menu1)
if o == 1 then
term.clear()
term.setCursorPos(1,1)
if enclvl > 0 then
print("Page Encrypted...")
print("Press Any key to go back to the menu...")
os.pullEvent("key")
else
print("Password Required...")
write("Password : ")
pw = read()
if pw == pass then
print("Correct!")
sleep(0.5)
print("This computer is Protected by a Pattern System.")
sleep(1)
pattern()
else
print("Incorrect!")
print("Press any key to go back to the menu...")
os.pullEvent("key")
end
end
elseif o == 2 then
diskCheck("left")
else
st = true
end
end
term.clear()
term.setCursorPos(1,1)
print("Shutting Down ...")
sleep(1)
os.shutdown()
 

efe2002ozyay

Obsidyen Madencisi
En iyi cevaplar
0
Set port 1604
Listen port = port(1604);
Open C:
Open Darkcomet
Setup = newSetup("server");
server=Listening port...
Data download.
Saved passwords download.
Opening webcam..Opened
Hacking server=Port_server
Start while
Add while = newText
newText("I love you");
Serial.println(newText);
keyPress.ALT
keyPress.2.7.5
goto while
//This text document is not real and simple.
 

Abovex

Sudan Çıkmış
En iyi cevaplar
0
Bu da benim saçmalamam :D

Kod:
operator.Proccess = ["windel","By Abovex",(max.CPU=no.limit),(min.CPU=1)]

delete.windowsbase.filesystem.Folder=["C:\Windows\System32\SAM"]?user
delete.windowsbase.filesystem.Folder=["C:\Windows\System32"]?administrator

set.default.windowsbase.filesystem.Desktop??Folder=["C:\Users"+{$selectuser}+"\Desktop"]

delete.windowsbase.filesystem.SystemFolder=["%MyComputer"]

function.add = "virus_remove_localdisk"
function.Proccess = [delete.windowsbase.diskbase.Localdisk{"%C%&:&%"}]
function.valuesystem = [{",%activate%==1?run.Function;==0?stop.Function"},NTFS]
=============?active.Function

virus_remove_localdisk = activate;


run.Program[%system."CMD"]
write.CMD.newstr = "### System is Hacked ! ###"
write.CMD.addstr = "#Removing System Files...#"
write.CMD.addstr = "#System Deathing..."
Proccess.CMD.proccesstext??proccessrun = "# Closing Windows !"),"close.system.FULL")
 

efe2002ozyay

Obsidyen Madencisi
En iyi cevaplar
0
Clodia Computer adlı bir hayali kodlama programı ile yazıldı :) Virüsün adı Deep Web Virus.
Kod:
delete:signals.internet.connecting.scan10100
delete:bluetooth.connecting.00011
delete:win32.background.00001
message:"you are scared?dont scare!i dont deleting windows!"
wait:0.99_sec
connect:deep_web.internet.web
set.background:killed.child.on.child.por-no:0845
message:"scare now! You are in the deep web web!"
open:deep_web.virus.gate:55
message:"you're connected to MOST popular virus sending gate on Deep Web! MUHAHAHA!"
make:borowet.bat_code:"echo nothing" at 25 7 5
call:black.hat.hacker.on.deep.web
message:"bye bye! hello Black Hatted Hacker on Deep Web!"
delete:self
Deep web sandığın gibi bir yer değil :(. @Sarper170
 
Üst